Gets a reference to the container's content element.
Namespace: MindFusion.Common.UI
File: ListContainer.js
JavaScript Copy Code |
---|
get content() {} |
HTMLElement
The 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"; |