public interface BootstrapButtonStyle
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBootstrapSize()
The current bootstrap size
|
java.lang.String |
getBootstrapState()
The current bootstrap state
|
java.lang.String |
getBootstrapStyle()
The current bootstrap style
|
void |
setBootstrapSize(java.lang.String alignment)
Sets the bootstrap size.
|
void |
setBootstrapState(java.lang.String alignment)
Sets the bootstrap state.
|
void |
setBootstrapStyle(java.lang.String alignment)
Sets the bootstrap style.
|
java.lang.String getBootstrapStyle()
setBootstrapStyle(String)
void setBootstrapStyle(java.lang.String alignment)
Possible values are (a blank string removes the current styling):
controls.BUTTON1.bootstrapStyle = "Primary"; controls.BUTTON1.setBootstrapStyle("Secondary");
java.lang.String getBootstrapState()
setBootstrapState(String)
void setBootstrapState(java.lang.String alignment)
Possible values are (a blank string removes the current state): Active - appears as if it has been already clicked Disabled - appears in a disabled state Example:
controls.BUTTON1.bootstrapState = "Active"; controls.BUTTON1.setBootstrapState("Disabled");
java.lang.String getBootstrapSize()
setBootstrapSize(String)
void setBootstrapSize(java.lang.String alignment)
Possible values are (a blank string removes the current styling):
controls.BUTTON1.bootstrapSize = "Large"; controls.BUTTON1.setBootstrapSize("Small");