Class NSQuoteListItem
One line in a list.
Syntax
Constructors
NSQuoteListItem()
Initializes a new instance of the NSQuoteListItem class.
Declaration
NSQuoteListItem
Methods
GetDisplayDescription()
One line in a list.
Declaration
String GetDisplayDescription()
Returns
Type | Description |
---|---|
String | Typically used in a tooltip. |
Examples
NSQuoteListItem thing;
String displayDescription = thing.GetDisplayDescription();
GetDisplayValue()
One line in a list.
Declaration
String GetDisplayValue()
Returns
Type | Description |
---|---|
String | List item text to display. |
Examples
NSQuoteListItem thing;
String displayValue = thing.GetDisplayValue();
GetERPQuoteListItemKey()
One line in a list.
Declaration
String GetERPQuoteListItemKey()
Returns
Type | Description |
---|---|
String | Primary key for the item. |
Examples
NSQuoteListItem thing;
String eRPQuoteListItemKey = thing.GetERPQuoteListItemKey();
SetDisplayDescription(String)
One line in a list.
Declaration
Void SetDisplayDescription(String displayDescription)
Parameters
Type | Name | Description |
---|---|---|
String | displayDescription | Typically used in a tooltip. |
Returns
Type | Description |
---|---|
Void |
Examples
NSQuoteListItem thing;
String displayDescription;
thing.SetDisplayDescription(displayDescription);
SetDisplayValue(String)
One line in a list.
Declaration
Void SetDisplayValue(String displayValue)
Parameters
Type | Name | Description |
---|---|---|
String | displayValue | List item text to display. |
Returns
Type | Description |
---|---|
Void |
Examples
NSQuoteListItem thing;
String displayValue;
thing.SetDisplayValue(displayValue);
SetERPQuoteListItemKey(String)
One line in a list.
Declaration
Void SetERPQuoteListItemKey(String eRPQuoteListItemKey)
Parameters
Type | Name | Description |
---|---|---|
String | eRPQuoteListItemKey | Primary key for the item. |
Returns
Type | Description |
---|---|
Void |
Examples
NSQuoteListItem thing;
String eRPQuoteListItemKey;
thing.SetERPQuoteListItemKey(eRPQuoteListItemKey);