Table of Contents
Enumerations #
Name | Values |
---|
This class exposes no enumerations.
Constants #
Name | Type | Value |
---|
This class exposes no constants.
Events #
Definition | Description |
---|
This class exposes no events.
Methods #
Definition | Description |
---|---|
Constructor(RowData as Dictionary) | Creates a new GraffitiGridRow from a Dictionary of data. |
Constructor(RowData as Dictionary, RowHeight as Integer | Creates a new GraffitiGridRow from a Dictionary of data with a custom RowHeight. |
HasKey(Key as String) as Boolean | Return true if the data within the row has a key matching Key . |
Lookup(Key as String, DefaultValue as Variant) | Returns the value of Key in the row’s data, or DefaultValue is the Key does not exist. |
Value(Key as String) as Variant | Returns the current value of Key in the row data. May return Nil if Key doesn’t exist. |
Value(Key as String, Assigns Value as Variant) | Sets the value of Key in the row data to Value . |
Values() as Dictionary | Returns the current row data. Should not be modified outside the class’s methods. |
Properties #
Name | Type | Default Value | Description |
---|---|---|---|
Bounds READ-ONLY |
REALbasic.Rect | Nil | The current screen coordinates of the row relative to the display’s position. Should not be modified manually. |
Height | Integer | -1 | Height of the row. -1 to use the parent’s RowHeight . |
IsVisible READ-ONLY |
Boolean | False | Returns whether the current row is visible in the display. Should not be modified manually. |
Tag | Variant | Nil | Custom reference value. |
Examples #
This class currently has no examples.
Notes #
This class currently has no notes.