GraffitiSuite Docs
Docs
Graffitiwall
Loading document parsing libraries...
# GraffitiWall Class Inherits GraffitiUIControl ## About GraffitiWall is a class that allows developers to embed multiple containers within their UI and display them in a cascading manner. ## Preview ## Compatibility ### Framework API Version | 1.0 | 2.0 | | :---: | :---: | | False | True | ### Android | 32-Bit | 64-Bit | | :---: | :---: | | False | True | ### Console | 32-Bit | 64-Bit | | :---: | :---: | | True | True | ### Desktop | 32-Bit | 64-Bit | | :---: | :---: | | True | True | ### iOS | 32-Bit | 64-Bit | | :---: | :---: | | False | True | ### Web | 32-Bit | 64-Bit | | :---: | :---: | | True | True | ## Event Definitions | Name | Parameters | Return Type | Description | | --- | :---: | :---: | --- | | Opening | (None) | (None) | | | PositioningComplete | (None) | (None) | Raised when all child containers are in their final position. | ## Methods | Name | Parameters | Return Type | Description | | --- | :---: | :---: | --- | | Add | item as MobileContainer | (None) | Adds a new panel to the control. | | AddAt | atIndex as Integer <br> item as MobileContainer | (None) | Adds a new panel to the control at the specified index. | | ContainerAt | atIndex as Integer | MobileContainer | Returns the container at the specified index in the internal array. | | IndexOf | container as MobileContainer | Integer | Returns the index of the specified MobileCOntainer within the internal array. | | LastIndex | (None) | Integer | Returns the last index of items in the internal array. | | Remove | container as MobileContainer | (None) | Removed the specified item and its associated container. | | RemoveAll | (None) | (None) | Remove all currently added items. | | RemoveAt | atIndex as Integer | (None) | Removes the item at the specified index. | | Update | (None) | (None) | Force all container positions to be recalculated and applied. | ## Properties | Name | Type | Default Value | Description | | --- | :---: | :---: | --- | | Animated | Boolean | True | Determines whether container movement is animated. | | AnimationLength | Integer | 1500 | Length of rearrange animation. | | BackgroundColor | ColorGroup | Nil | Color drawn to the background of the component. | | BorderColor | ColorGroup | Nil | Color used to draw the component's border. | | ColumnCount | Integer | Nil | Number of columns in which to sort containers. | | GutterHeight | Integer | Nil | Vertical distance between containers. | | GutterWidth | Integer | Nil | Horizontal distance between containers. | | LockUpdate | Boolean | Nil | Used for blocking updates on long operations. | | MinColumns | Integer | Nil | Minimum number of columns allowed for sorting containers. |