Class NSQuoteVersionWorkflowState
Information about possible button actions for the quote version dialog.
Constructors
NSQuoteVersionWorkflowState()
Initializes a new instance of the NSQuoteVersionWorkflowState class.
Declaration
NSQuoteVersionWorkflowState Methods
GetActionButtons()
Declaration
NSQuoteVersionButtonState[] GetActionButtons() Examples
NSQuoteVersionWorkflowState thing;
NSQuoteVersionButtonState[] actionButtons = thing.GetActionButtons();
Returns
| Type | Description |
| NSQuoteVersionButtonState[] | Array of visible buttons with defined actions in the quote version dialog. |
GetStateImage()
Declaration
NSQuoteVersionButtonState GetStateImage() Examples
NSQuoteVersionWorkflowState thing;
NSQuoteVersionButtonState stateImage = thing.GetStateImage();
Returns
| Type | Description |
| NSQuoteVersionButtonState | Information about the state image for the current quote version. |
GetStatus()
Declaration
NSQuoteVersionStatusInformation GetStatus() Examples
NSQuoteVersionWorkflowState thing;
NSQuoteVersionStatusInformation status = thing.GetStatus();
Returns
| Type | Description |
| NSQuoteVersionStatusInformation | Status information for the Quote Version. |
GetUpdatePricesButton()
Declaration
NSQuoteVersionButtonState GetUpdatePricesButton() Examples
NSQuoteVersionWorkflowState thing;
NSQuoteVersionButtonState updatePricesButton = thing.GetUpdatePricesButton();
Returns
| Type | Description |
| NSQuoteVersionButtonState | Information about the action for the update prices button. |
SetActionButtons(NSQuoteVersionButtonState[])
Declaration
Void SetActionButtons(NSQuoteVersionButtonState[] actionButtons) Examples
NSQuoteVersionWorkflowState thing;
NSQuoteVersionButtonState[] actionButtons;
thing.SetActionButtons(actionButtons);
Parameters
| Type | Name | Description |
| NSQuoteVersionButtonState[] | actionButtons | Array of visible buttons with defined actions in the quote version dialog. |
Returns
| Type | Description |
| Void |
SetStateImage(NSQuoteVersionButtonState)
Declaration
Void SetStateImage(NSQuoteVersionButtonState stateImage) Examples
NSQuoteVersionWorkflowState thing;
NSQuoteVersionButtonState stateImage;
thing.SetStateImage(stateImage);
Parameters
| Type | Name | Description |
| NSQuoteVersionButtonState | stateImage | Information about the state image for the current quote version. |
Returns
| Type | Description |
| Void |
SetStatus(NSQuoteVersionStatusInformation)
Declaration
Void SetStatus(NSQuoteVersionStatusInformation status) Examples
NSQuoteVersionWorkflowState thing;
NSQuoteVersionStatusInformation status;
thing.SetStatus(status);
Parameters
| Type | Name | Description |
| NSQuoteVersionStatusInformation | status | Status information for the Quote Version. |
Returns
| Type | Description |
| Void |
SetUpdatePricesButton(NSQuoteVersionButtonState)
Declaration
Void SetUpdatePricesButton(NSQuoteVersionButtonState updatePricesButton) Examples
NSQuoteVersionWorkflowState thing;
NSQuoteVersionButtonState updatePricesButton;
thing.SetUpdatePricesButton(updatePricesButton);
Parameters
| Type | Name | Description |
| NSQuoteVersionButtonState | updatePricesButton | Information about the action for the update prices button. |
Returns
| Type | Description |
| Void |