Type | Name | Description | Notes |
Variant | getProperty(Int rowno, Int colno, String propName) | If the part of the table identified by rowno and colno has a property named propName , this method returns the value of this property. Otherwise, null is returned. The exact type of the return value depends on the type of the property. | |
Int | getPropertyCount(Int rowno, Int colno) | Returns the number of properties attached to the part of the table identified by rowno and colno . | |
String | getPropertyNameAt(Int rowno, Int colno, Int propIndex) | Returns the property name of the part identified by rowno and colno positioned at propIndex . Returns null if propIndex is < 0 or if it is >= getPropertyCount(rowno, colno) . | |
Variant | getScopedProperty(Int rowno, Int colno, String propName) | If the part of the table identified by rowno and colno has a scoped property named propName , this method returns the value of this property. Otherwise, null is returned. The exact type of the return value depends on the type of the property. | |
Boolean | hasProperty(Int rowno, Int colno, String propName) | Returns true if the part of the table identified by rowno and colno has a property named propName . | |
Void | removeProperty(Int rowno, Int colno, String propName) | Removes the property named propName from the part of the table identified by rowno and colno . | |
Void | setIntProperty(Int rowno,
Int colno,
String propName,
Int propVal) | Attaches to the part of the table identified by rowno and colno a property named propName with a value of propVal . | |
Void | setStringProperty | Void setStringProperty(Int rowno,
| |
Int | colno | Int colno,
| |
String | propName | String propName,
| |
String | propVal | Attaches to the part of the table identified by rowno and colno a property named propName with a value of propVal . | |