Show / Hide Table of Contents

Class NSDeliveryTerm

The built-in delivery terms list. Used by the SuperOffice Quote Connector in quote versions.

Syntax

Constructors

NSDeliveryTerm()

Initializes a new instance of the NSDeliveryTerm class.

Declaration
NSDeliveryTerm

Methods

GetId()

Gets the primary key (ID) for the NSDeliveryTerm

Declaration
Integer GetId()
Returns
Type Description
Integer
Examples
NSDeliveryTerm thing;
Integer id = thing.GetId();

GetTooltip()

Gets the tooltip description for the NSDeliveryTerm list item.

Declaration
String GetTooltip()
Returns
Type Description
String
Examples
NSDeliveryTerm thing;
String descr = thing.GetTooltip();

GetValue()

Gets the name of the NSDeliveryTerm.

Declaration
String GetValue()
Returns
Type Description
String
Examples
NSDeliveryTerm thing;
String name = thing.GetValue();

SetId(Integer)

Sets the primary key (ID) for the NSDeliveryTerm

Declaration
Void SetId(Integer id)
Parameters
Type Name Description
Integer id
Returns
Type Description
Void
Examples
NSDeliveryTerm thing;
thing.SetId(123);

SetTooltip(String)

Sets the tooltip description for the NSDeliveryTerm list item.

Declaration
Void SetTooltip(String tooltip)
Parameters
Type Name Description
String tooltip
Returns
Type Description
Void
Examples
NSDeliveryTerm thing;
String descr = "something new";
thing.SetTooltip(descr);

SetValue(String)

Sets the name of the NSDeliveryTerm item.

Declaration
Void SetValue(String value)
Parameters
Type Name Description
String value
Returns
Type Description
Void
Examples
NSDeliveryTerm thing;
thing.SetValue("frotz");
In This Article
  • Constructors
    • NSDeliveryTerm()
  • Methods
    • GetId()
    • GetTooltip()
    • GetValue()
    • SetId(Integer)
    • SetTooltip(String)
    • SetValue(String)
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top