Class NSDataRight
Carrier object for DataRight.
Syntax
Constructors
NSDataRight()
Initializes a new instance of the NSDataRight class.
Declaration
NSDataRight
Methods
GetDescription()
Carrier object for DataRight.
Declaration
String GetDescription()
Returns
| Type | Description |
|---|---|
| String |
Examples
NSDataRight thing;
String description = thing.GetDescription();
GetValue()
Carrier object for DataRight.
Declaration
String GetValue()
Returns
| Type | Description |
|---|---|
| String |
Examples
NSDataRight thing;
String value = thing.GetValue();
SetDescription(String)
Carrier object for DataRight.
Declaration
Void SetDescription(String description)
Parameters
| Type | Name | Description |
|---|---|---|
| String | description |
Returns
| Type | Description |
|---|---|
| Void |
Examples
NSDataRight thing;
String description;
thing.SetDescription(description);
SetValue(String)
Carrier object for DataRight.
Declaration
Void SetValue(String value)
Parameters
| Type | Name | Description |
|---|---|---|
| String | value |
Returns
| Type | Description |
|---|---|
| Void |
Examples
NSDataRight thing;
String value;
thing.SetValue(value);