Search
ListContainer.content Property
See Also
 






Gets a reference to the container's content element.

Namespace: MindFusion.Common.UI
File: ListContainer.js

 Syntax

JavaScript  Copy Code

get content() {}

 Property Value

HTMLElement

 Example

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
var toolstrip = new ui.ToolStrip(document.getElementById("toolstrip"));

toolStrip.content.style.opacity = "0";

 See Also