Table of Contents
Preview #
About #
GraffitiWall is a class that allows developers to embed multiple containers within their UI and display them in a cascading manner.
Enumerations #
This class exposes no enumerations.
Constants #
This class exposes no constants.
Events #
Name | Parameters | Return Type | Description |
---|---|---|---|
PositioningComplete | None | None | Raised when all child containers are in their final position. |
Methods #
Name | Parameters | Return Type | Description |
---|---|---|---|
Add | container as MobileContainer | None | Adds a new panel to the control. |
AddAt | index as Integer container as MobileContainer | None | Adds a new panel to the control at the specified index. |
ContainerAt | index 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 | index as Integer | None | Removes the item at the specified index. |
Update | None | None | Force all container positions to be recalculated and applied. |
Properties #
Name | Parameters | Return Type | Description |
---|---|---|---|
Animated | Boolean | True | Determines whether container movement is animated. |
AnimationSpeed | Integer | 1500 | Length of animations in milliseconds. |
BackgroundColor | ColorGroup | Nil | Color drawn to the background of the component. |
BorderColor | ColorGroup | Nil | Color used to draw the component’s border. |
ColumnCount | Integer | 3 | Number of columns in which to sort containers. |
GutterHeight | Integer | 0 | Vertical distance between containers. |
GutterWidth | Integer | 0 | Horizontal distance between containers. |
MinColumns | Integer | 0 | Minimum number of columns allowed for sorting containers. |