Show / Hide Table of Contents

Class NSQuickReply

Syntax

Constructors

NSQuickReply()

Initializes a new instance of the NSQuickReply class.

Declaration
NSQuickReply

Methods

GetHtmlBody()

Declaration
String GetHtmlBody()
Returns
Type Description
String

The HTML body of the quick reply.

Examples
NSQuickReply thing;
String htmlBody = thing.GetHtmlBody();

GetName()

Declaration
String GetName()
Returns
Type Description
String

The short name of the quick reply.

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

GetQuickReplyId()

Declaration
Integer GetQuickReplyId()
Returns
Type Description
Integer

Primary key.

Examples
NSQuickReply thing;
Integer quickReplyId = thing.GetQuickReplyId();

SetHtmlBody(String)

Declaration
Void SetHtmlBody(String htmlBody)
Parameters
Type Name Description
String htmlBody

The HTML body of the quick reply.

Returns
Type Description
Void
Examples
NSQuickReply thing;
String htmlBody;
thing.SetHtmlBody(htmlBody);

SetName(String)

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

The short name of the quick reply.

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

SetQuickReplyId(Integer)

Declaration
Void SetQuickReplyId(Integer quickReplyId)
Parameters
Type Name Description
Integer quickReplyId

Primary key.

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