Show / Hide Table of Contents

Class NSQuoteVersionButtonState

Information about possible button actions for the quote version dialog.

Syntax

Constructors

NSQuoteVersionButtonState()

Initializes a new instance of the NSQuoteVersionButtonState class.

Declaration
NSQuoteVersionButtonState

Methods

GetAction()

Information about possible button actions for the quote version dialog.

Declaration
Integer GetAction()
Returns
Type Description
Integer

Action for the button. See QuoteVersionButtonAction.

Examples
NSQuoteVersionButtonState thing;
Integer action = thing.GetAction();

GetDisplayText()

Information about possible button actions for the quote version dialog.

Declaration
String GetDisplayText()
Returns
Type Description
String

Text to be displayed on the button.

Examples
NSQuoteVersionButtonState thing;
String displayText = thing.GetDisplayText();

GetEnabled()

Information about possible button actions for the quote version dialog.

Declaration
Bool GetEnabled()
Returns
Type Description
Bool

Indicate if the button should be enabled or disabled.

Examples
NSQuoteVersionButtonState thing;
Bool enabled = thing.GetEnabled();

GetImageHint()

Information about possible button actions for the quote version dialog.

Declaration
String GetImageHint()
Returns
Type Description
String

Image to be shown.

Examples
NSQuoteVersionButtonState thing;
String imageHint = thing.GetImageHint();

GetTooltipText()

Information about possible button actions for the quote version dialog.

Declaration
String GetTooltipText()
Returns
Type Description
String

The tooltip for the button.

Examples
NSQuoteVersionButtonState thing;
String tooltipText = thing.GetTooltipText();

SetAction(Integer)

Information about possible button actions for the quote version dialog.

Declaration
Void SetAction(Integer action)
Parameters
Type Name Description
Integer action

Action for the button See QuoteVersionButtonAction.

Returns
Type Description
Void
Examples
NSQuoteVersionButtonState thing;
Integer action;
thing.SetAction(action);

SetDisplayText(String)

Information about possible button actions for the quote version dialog.

Declaration
Void SetDisplayText(String displayText)
Parameters
Type Name Description
String displayText

Text to be displayed on the button.

Returns
Type Description
Void
Examples
NSQuoteVersionButtonState thing;
String displayText;
thing.SetDisplayText(displayText);

SetEnabled(Bool)

Information about possible button actions for the quote version dialog.

Declaration
Void SetEnabled(Bool enabled)
Parameters
Type Name Description
Bool enabled

Indicate if the button should be enabled or disabled.

Returns
Type Description
Void
Examples
NSQuoteVersionButtonState thing;
Bool enabled;
thing.SetEnabled(enabled);

SetImageHint(String)

Information about possible button actions for the quote version dialog.

Declaration
Void SetImageHint(String imageHint)
Parameters
Type Name Description
String imageHint

Image to be shown.

Returns
Type Description
Void
Examples
NSQuoteVersionButtonState thing;
String imageHint;
thing.SetImageHint(imageHint);

SetTooltipText(String)

Information about possible button actions for the quote version dialog.

Declaration
Void SetTooltipText(String tooltipText)
Parameters
Type Name Description
String tooltipText

The tooltip for the button.

Returns
Type Description
Void
Examples
NSQuoteVersionButtonState thing;
String tooltipText;
thing.SetTooltipText(tooltipText);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top