(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 | ||
---|---|---|---|
displayed : Boolean [read-only]
Determines if the selected node is currently displayed. | IDisplayable |
Public Methods
Method | Defined By | ||
---|---|---|---|
Navigates the application until the selected node is displayed. | IDisplayable |
Property Detail
displayed | property |
displayed:Boolean
[read-only] 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 |
Determines if the selected node is currently displayed.
Implementation
public function get displayed():Boolean
Method Detail
display | () | method |
public function display():void
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 |
Navigates the application until the selected node is displayed.
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