# GraffitiResponsive
Class Inherits GraffitiScrollableArea
## About
GraffitiResponsive helps you build amazing responsive desktop user interfaces that are divided into columns which alter shape and position based on window size.
## Preview
## Enumerations
| Name | Value | Description |
| --- | :---: | --- |
| Breakpoints | ExtraSmall <br > Small <br > Medium <br > Large <br > ExtraLarge <br > ExtraExtraLarge | Supported size breakpoints for row breaks. |
## Event Definitions
| Name | Parameters | Return Type | Description |
| --- | :---: | :---: | --- |
| Opening | (None) | (None) | (None) |
| Resized | (None) | (None) | Raised when the control has been resized in the browser. |
| Resizing | (None) | (None) | Raised when the control is being resized. May cause sluggishness due to its rapid fire nature. |
## Methods
| Name | Parameters | Return Type | Description |
| --- | :---: | :---: | --- |
| Add | row as GraffitiResponsiveRow | (None) | Adds a new responsive row to the display. |
| AddAt | index as Integer <br> row as GraffitiResponsiveRow | (None) | Inserts a row at the specified index. |
| ItemAt | index as Integer | GraffitiResponsiveRow | Returns the row at the specified index. |
| LastIndex | (None) | Integer | Returns the index of the last row. |
| Remove | row as GraffitiResponsiveRow | (None) | Removes the specified row. |
| RemoveAll | (None) | (None) | Removes all rows. |
| RemoveAt | index as Integer | (None) | Removes the row at the specified index. |
| Update | (None) | (None) | Signals the control to recalculate and reposition elements. |
## Properties
| Name | Type | Default Value | Description |
| --- | :---: | :---: | --- |
| CellPadding | Integer | (None) | Space reserved between cells on the same row. |
| LockUpdate | Boolean | (None) | Used to halt updates of the UI until set to False. |
| RowPadding | Integer | (None) | Space reserved between rows. |