Show / Hide Table of Contents

Class NSQuoteVersionWorkflowState

Information about possible button actions for the quote version dialog.

Syntax

Constructors

NSQuoteVersionWorkflowState()

Initializes a new instance of the NSQuoteVersionWorkflowState class.

Introduced or updated in version: 7.5

Declaration
NSQuoteVersionWorkflowState

Methods

GetActionButtons()

Introduced or updated in version: 7.5

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()

Introduced or updated in version: 7.5

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()

Introduced or updated in version: 7.5

Declaration
NSQuoteVersionStatusInformation GetStatus()
Returns
Type Description
NSQuoteVersionStatusInformation

Status information for the Quote Version.

Examples
NSQuoteVersionWorkflowState thing;
NSQuoteVersionStatusInformation status = thing.GetStatus();

GetUpdatePricesButton()

Introduced or updated in version: 7.5

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[])

Introduced or updated in version: 7.5

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)

Introduced or updated in version: 7.5

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)

Introduced or updated in version: 7.5

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)

Introduced or updated in version: 7.5

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);
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top