Style/End Style: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 20: Line 20:
</pre>
</pre>


== Example (Basic) ==
== Example ==


<tabber>
JavaScript=
<syntaxhighlight lang="JavaScript">
<pre>
<pre>
// This sample shows how to add a button at runtime.
</script><style>
  #Button1 {background: red}
</style><script>
</syntaxhighlight>
|-|
BASIC=
<syntaxhighlight lang="vb.net">
'This sample shows how to change the appearance of a button in your code.
'This sample shows how to change the appearance of a button in your code.
   
   
Line 28: Line 40:
   #Button1 {background: red}
   #Button1 {background: red}
End Style  
End Style  
 
</syntaxhighlight>
</pre>
</tabber>
 
== Example (JavaScript) ==
<pre>
// This sample shows how to add a button at runtime.
</script><style>
  #Button1 {background: red}
</style><script>
</pre>


== Output ==
== Output ==

Revision as of 23:28, 24 July 2019

This deprecated feature should no longer be used, but is still available for reasons of backwards compatibility.

Please see Project CSS for an alternative way to use this feature.

Style

[statements]

End Style

Description

This statement is deprecated in AppStudio 5. Instead, put your styling rules into Open Project CSS in the Run menu.

The Style statement allows you to embed pure css style rules in your app. This allows you to have additional functionality to your app. Statements within this block must follow all css rules. They are ignored by AppStudio itself. For more information, see the Tech Note ‘The role of JavaScript, HTML5 and WebKit’.

Style rules are automatically global and loaded at startup. They are not executed as part of the flow of control of your app. Do not put a style block inside a Sub or Function.

To change the style of a control at runtime, use

  myControl.style.backround = "red'
 
  'or
  $(myControl).css("background", "red")

Example

<pre>
// This sample shows how to add a button at runtime.
 
</script><style>
  #Button1 {background: red}
</style><script>

'This sample shows how to change the appearance of a button in your code.
 
Style 
  #Button1 {background: red}
End Style

Output

(a button and a box are displayed. Click the button and text is put in the box)

Related Items

Project CSS

JavaScript