Class NSChangedDataItem
Table name/record ID pair used to refer to records.
Constructors
NSChangedDataItem()
Initializes a new instance of the NSChangedDataItem class.
Declaration
NSChangedDataItem Methods
GetRecordId()
Declaration
Integer GetRecordId() Examples
NSChangedDataItem thing;
Integer recordId = thing.GetRecordId();
Returns
| Type | Description |
| Integer | ID of record, should never be 0 |
GetTablename()
Declaration
String GetTablename() Examples
NSChangedDataItem thing;
String tablename = thing.GetTablename();
Returns
| Type | Description |
| String | Name of table, standardized to lowercase. |