Class NSQuoteVersionStatusInformation
Information about possible button actions for the quote version dialog.
Constructors
NSQuoteVersionStatusInformation()
Initializes a new instance of the NSQuoteVersionStatusInformation class.
Declaration
NSQuoteVersionStatusInformation Methods
GetDisplayMessage()
Checks for errors on quote lines, alternatives and the version itself.
Declaration
String GetDisplayMessage() Examples
NSQuoteVersionStatusInformation thing;
String displayMessage = thing.GetDisplayMessage();
Returns
| Type | Description |
| String | Generated error message for the Quote Version. |
GetDisplayTooltip()
Checks for errors on quote lines, alternatives and the version itself.
Declaration
String GetDisplayTooltip() Examples
NSQuoteVersionStatusInformation thing;
String displayTooltip = thing.GetDisplayTooltip();
Returns
| Type | Description |
| String | Generated full tooltip for the Quote Version. |
GetIconHint()
Declaration
String GetIconHint() Examples
NSQuoteVersionStatusInformation thing;
String iconHint = thing.GetIconHint();
Returns
| Type | Description |
| String | Icon hint for the associated message. |
GetStatus()
Declaration
Integer GetStatus() Examples
NSQuoteVersionStatusInformation thing;
Integer status = thing.GetStatus();
Returns
| Type | Description |
| Integer | Status information for the quote version. See <xref href="CRMScript.NetServer.QuoteStatus" data-throw-if-not-resolved="false"></xref>. |
SetDisplayMessage(String)
Checks for errors on quote lines, alternatives and the version itself.
Declaration
Void SetDisplayMessage(String displayMessage) Examples
NSQuoteVersionStatusInformation thing;
String displayMessage;
thing.SetDisplayMessage(displayMessage);
Parameters
| Type | Name | Description |
| String | displayMessage | Generated error message for the Quote Version. |
Returns
| Type | Description |
| Void |
SetDisplayTooltip(String)
Checks for errors on quote lines, alternatives and the version itself.
Declaration
Void SetDisplayTooltip(String displayTooltip) Examples
NSQuoteVersionStatusInformation thing;
String displayTooltip;
thing.SetDisplayTooltip(displayTooltip);
Parameters
| Type | Name | Description |
| String | displayTooltip | Generated full tooltip for the Quote Version. |
Returns
| Type | Description |
| Void |
SetIconHint(String)
Declaration
Void SetIconHint(String iconHint) Examples
NSQuoteVersionStatusInformation thing;
String iconHint;
thing.SetIconHint(iconHint);
Parameters
| Type | Name | Description |
| String | iconHint | Icon hint for the associated message. |
Returns
| Type | Description |
| Void |
SetStatus(Integer)
Declaration
Void SetStatus(Integer status) Examples
NSQuoteVersionStatusInformation thing;
Integer status;
thing.SetStatus(status);
Parameters
| Type | Name | Description |
| Integer | status | Status information for the quote version. See <xref href="CRMScript.NetServer.QuoteStatus" data-throw-if-not-resolved="false"></xref>. |
Returns
| Type | Description |
| Void |