Child pages
  • JSStyle
Skip to end of metadata
Go to start of metadata


Property Summery
String #text
The textual content of the style.

Method Summery
String #getName()
Gets the name of the style.

Property Details
text
The textual content of the style.
Returns
String
Sample
var st = solutionModel.newStyle('myStyle','form { background-color: yellow; }');
st.text = st.text + 'field { background-color: blue; }';
form.styleName = 'myStyle';
application.output('Style name is: ' + st.getName());

Method Details
getName

String getName ()

Gets the name of the style.
Returns
String – A String holding the name of the style.
Sample
var st = solutionModel.newStyle('myStyle','form { background-color: yellow; }');
st.text = st.text + 'field { background-color: blue; }';
form.styleName = 'myStyle';
application.output('Style name is: ' + st.getName());
  • No labels