Autodesk.Viewing.UI.Control
new Control(id,options)
Base class for UI controls.
It is abstract and should not be instantiated directly.
Parameters
id string | The id for this control. Optional. |
options object | An optional dictionary of options. |
collapsible boolean | Whether this control is collapsible. |
Methods
addClass(cssClass)
Adds a CSS class to this control.
Parameters
cssClass* string | The name of the CSS class. |
getDimensions()
Returns the dimensions of this control.
Returns
Type | Description |
---|---|
object | The width and height of the toolbar. |
getId()
Gets this control’s ID.
Returns
Type | Description |
---|---|
string | The control’s ID. |
getPosition()
Returns the position of this control relative to the canvas.
Returns
Type | Description |
---|---|
object | The top and left values of the toolbar. |
getToolTip()
Returns the tooltip text for this control.
Returns
Type | Description |
---|---|
string | The tooltip text. Null if it’s not set. |
isCollapsed()
Gets the collapsed state of this control.
Returns
Type | Description |
---|---|
boolean | True if this control is collapsed. |
isCollapsible()
Returns whether or not this control is collapsible.
Returns
Type | Description |
---|---|
boolean | True if this control can be collapsed. |
isVisible()
Gets the visibility of this control.
Returns
Type | Description |
---|---|
boolean | True if the this control is visible. |
removeClass(cssClass)
Removes a CSS class from this control.
Parameters
cssClass* string | The name of the CSS class. |
setCollapsed(collapsed)
Sets the collapsed state of this control.
Parameters
collapsed* boolean | The collapsed value to set. |
Returns
Type | Description |
---|---|
boolean | True if the control’s collapsed state changes. |
setToolTip(toolTipText)
Sets the tooltip text for this control.
Parameters
toolTipText* string | The text for the tooltip. |
Returns
Type | Description |
---|---|
boolean | True if the tooltip was successfully set. |
setVisible(visible)
Sets the visibility of this control.
Parameters
visible* boolean | The visibility value to set. |
Returns
Type | Description |
---|---|
boolean | True if the control’s visibility changed. |
Events
COLLAPSED_CHANGED
Event fired when the collapsed state of the control changes.
Properties
controlId string | The ID of the control that fired this event. |
isCollapsed boolean | True if the control is now collapsed. |
VISIBILITY_CHANGED
Event fired when the visibility of the control changes.
Properties
controlId string | The ID of the control that fired this event. |
isVisible boolean | True if the control is now visible. |