Gets a reference to the container's content element.
Namespace: MindFusion.Common.UI
File: ListContainer.js
SyntaxJavaScript
Copy Code
|
|---|
get content() {} |
HTMLElement
ExampleThe following sample creates a new ToolStrip control and makes it invisible e.g. sets the opacity of its content (HTMLElement) to 0.
JavaScript
Copy Code
|
|---|
var ui = MindFusion.UI; // create a new instance of the ToolStrip control toolStrip.content.style.opacity = "0"; |
See Also