Show / Hide Table of Contents

Class NSReplyTemplate

Syntax

Constructors

NSReplyTemplate()

Initializes a new instance of the NSReplyTemplate class.

Declaration
NSReplyTemplate

Methods

GetDescription()

Declaration
String GetDescription()
Returns
Type Description
String

The description for this reply template.

Examples
NSReplyTemplate thing;
String description = thing.GetDescription();

GetFolderId()

Declaration
Integer GetFolderId()
Returns
Type Description
Integer

The ID of the folder in which this reply template is located. NULL or -1 if this is a top-level reply template.

Examples
NSReplyTemplate thing;
Integer folderId = thing.GetFolderId();

GetName()

Declaration
String GetName()
Returns
Type Description
String

The name for this reply template.

Examples
NSReplyTemplate thing;
String name = thing.GetName();

GetReplyTemplateId()

Declaration
Integer GetReplyTemplateId()
Returns
Type Description
Integer

The primary key (auto-incremented).

Examples
NSReplyTemplate thing;
Integer replyTemplateId = thing.GetReplyTemplateId();

SetDescription(String)

Declaration
Void SetDescription(String description)
Parameters
Type Name Description
String description

The description for this reply template.

Returns
Type Description
Void
Examples
NSReplyTemplate thing;
String description;
thing.SetDescription(description);

SetFolderId(Integer)

Declaration
Void SetFolderId(Integer folderId)
Parameters
Type Name Description
Integer folderId

The ID of the folder in which this reply template is located. NULL or -1 if this is a top-level reply template.

Returns
Type Description
Void
Examples
NSReplyTemplate thing;
Integer folderId;
thing.SetFolderId(folderId);

SetName(String)

Declaration
Void SetName(String name)
Parameters
Type Name Description
String name

The name for this reply template.

Returns
Type Description
Void
Examples
NSReplyTemplate thing;
String name;
thing.SetName(name);

SetReplyTemplateId(Integer)

Declaration
Void SetReplyTemplateId(Integer replyTemplateId)
Parameters
Type Name Description
Integer replyTemplateId

The primary key (auto-incremented).

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