(Beta)
Package | com.adobe.mosaic.om.interfaces |
Interface | public interface IDisplayable |
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Runtime Versions: | AIR 2.0.2, Flash Player 10.1 |
IDisplayable
interface provides methods for getting and setting the display state of
nodes that hold content (panel, view, and tile) in the DOM.
Public Properties
Property | Defined By |
---|
Public Methods
Method | Defined By |
---|
Property Detail
Method Detail
Examples How to use this example
IDisplayable_example.mxml
// nodeToTestForDisplay is of type IMosaicNode if (nodeToTestForDisplay is IDisplayable) { var nodeDisplayable:IDisplayable = nodeToTestForDisplay as IDisplayable; if (nodeDisplayable != null) { if (nodeDisplayable.displayed) { strNodeDisplayStatus = "displayed"; } } }
Wed Nov 21 2018, 06:34 AM -08:00