Class NSQuoteListItem

One line in a list.

Constructors

NSQuoteListItem()

Initializes a new instance of the NSQuoteListItem class.

Declaration

NSQuoteListItem

Methods

GetDisplayDescription()

Declaration

String GetDisplayDescription()

Examples

NSQuoteListItem thing;
String displayDescription = thing.GetDisplayDescription();

Returns

Type Description
String Typically used in a tooltip.

GetDisplayValue()

Declaration

String GetDisplayValue()

Examples

NSQuoteListItem thing;
String displayValue = thing.GetDisplayValue();

Returns

Type Description
String List item text to display.

GetERPQuoteListItemKey()

Declaration

String GetERPQuoteListItemKey()

Examples

NSQuoteListItem thing;
String eRPQuoteListItemKey = thing.GetERPQuoteListItemKey();

Returns

Type Description
String Primary key for the item.

SetDisplayDescription(String)

Declaration

Void SetDisplayDescription(String displayDescription)

Examples

NSQuoteListItem thing;
String displayDescription;
thing.SetDisplayDescription(displayDescription);

Parameters

Type Name Description
String displayDescription Typically used in a tooltip.

Returns

Type Description
Void

SetDisplayValue(String)

Declaration

Void SetDisplayValue(String displayValue)

Examples

NSQuoteListItem thing;
String displayValue;
thing.SetDisplayValue(displayValue);

Parameters

Type Name Description
String displayValue List item text to display.

Returns

Type Description
Void

SetERPQuoteListItemKey(String)

Declaration

Void SetERPQuoteListItemKey(String eRPQuoteListItemKey)

Examples

NSQuoteListItem thing;
String eRPQuoteListItemKey;
thing.SetERPQuoteListItemKey(eRPQuoteListItemKey);

Parameters

Type Name Description
String eRPQuoteListItemKey Primary key for the item.

Returns

Type Description
Void