# GraffitiWallPanel
Class
## Enumerations
| Name | Value | Description |
| --- | :---: | --- |
| OverflowVisibility | Visible <br> Auto <br> Hidden <br> Scroll | Supported overflow visibility models. |
## Methods
| Name | Parameters | Return Type | Description |
| --- | :---: | :---: | --- |
| Constructor | BGColor as Color <br> container as WebContainer | (None) | Creates a new instance. |
| Constructor | container as WebContainer | (None) | Creates a new instance. |
## Properties
| Name | Type | Default Value | Description |
| --- | :---: | :---: | --- |
| Background | Color | &cFFFFFFFF | The background color of the panel. |
| Child | WebContainer | Nil | The control you wish to embed. We use WebControl here so that you can either embed a single item, or embed a container. |
| Overflow | OverflowVisibility | Nil | Determines how items that do not fit within the panel's viewable area are displayed. |
| PercentHeight | Integer | 0 | Sets the panel to occupy a percentage height of the control's viewable area (without scroll). When PercentHeight = 0 the WebContainer's original height is used. |
| PercentWidth | Integer | 0 | Sets the panel to occupy a percentage width of the control's viewable area (without scroll). When PercentWidth = 0 the WebContainer's original width is used. |
| Tag | Variant | Nil | Developer storage. |