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