(Beta)
Package | com.adobe.mosaic.om.interfaces |
Interface | public interface ITile extends IMosaicNode , IDisplayable |
Implementors | ModuleTile, Tile |
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 |
ITile
interface provides methods for retrieving information about a LiveCycle Mosaic
tile's details.
Public Properties
Property | Defined By |
---|
Property Detail
Method Detail
Examples How to use this example
ITile_example.mxml
<?xml version="1.0" encoding="utf-8"?> <mc:Tile xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mc="com.adobe.mosaic.core.*" applicationComplete="initTile()"> <fx:Script> <![CDATA[ // Display some of this tile's properties private function initTile():void { labelCat.text += this.catalog.uri; labelX.text += this.tileX; labelY.text += this.tileY; labelW.text += this.tileWidth; labelH.text += this.tileHeight; } ]]> </fx:Script> <s:Label id="labelCat" text="Catalog: "/> <s:Label id="labelX" text="X: "/> <s:Label id="labelY" text="Y: "/> <s:Label id="labelW" text="Width: "/> <s:Label id="labelH" text="Height: "/> </mc:Tile>
Wed Nov 21 2018, 06:34 AM -08:00