Class NSRelationToOwner
Constructors
NSRelationToOwner()
Initializes a new instance of the NSRelationToOwner class.
Declaration
NSRelationToOwner Methods
GetId()
Gets the primary key (ID) for the NSRelationToOwner
Declaration
Integer GetId() Examples
NSRelationToOwner thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer |
GetTooltip()
Gets the tooltip description for the NSRelationToOwner list item.
Declaration
String GetTooltip() Examples
NSRelationToOwner thing;
String descr = thing.GetTooltip();
Returns
| Type | Description |
| String |
GetValue()
Gets the name of the NSRelationToOwner.
Declaration
String GetValue() Examples
NSRelationToOwner thing;
String name = thing.GetValue();
Returns
| Type | Description |
| String |
SetId(Integer)
Sets the primary key (ID) for the NSRelationToOwner
Declaration
Void SetId(Integer id) Examples
NSRelationToOwner thing;
thing.SetId(123);
Parameters
| Type | Name | Description |
| Integer | id |
Returns
| Type | Description |
| Void |