Show / Hide Table of Contents

Class NSReportEntity

Syntax

Constructors

NSReportEntity()

Initializes a new instance of the NSReportEntity class.

Declaration
NSReportEntity

Methods

GetAssociateId()

Declaration
Integer GetAssociateId()
Returns
Type Description
Integer

The owner of the report.

Examples
NSReportEntity thing;
Integer associateId = thing.GetAssociateId();

GetDescription()

Declaration
String GetDescription()
Returns
Type Description
String

The description of the report.

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

GetName()

Declaration
String GetName()
Returns
Type Description
String

The name of the report.

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

GetPublished()

Declaration
Bool GetPublished()
Returns
Type Description
Bool

Is the report published?

Examples
NSReportEntity thing;
Bool published = thing.GetPublished();

GetReportCategory()

Declaration
Integer GetReportCategory()
Returns
Type Description
Integer

The category of the report. See ReportCategory.

Examples
NSReportEntity thing;
Integer reportCategory = thing.GetReportCategory();

GetReportId()

Declaration
Integer GetReportId()
Returns
Type Description
Integer

The ID of the report.

Examples
NSReportEntity thing;
Integer reportId = thing.GetReportId();

GetReportLayout()

Declaration
Integer GetReportLayout()
Returns
Type Description
Integer

The layout of the report. See ReportLayout

Examples
NSReportEntity thing;
Integer reportLayout = thing.GetReportLayout();

GetTemplateId()

Declaration
Integer GetTemplateId()
Returns
Type Description
Integer

The ID of report template.

Examples
NSReportEntity thing;
Integer templateId = thing.GetTemplateId();

SetAssociateId(Integer)

Declaration
Void SetAssociateId(Integer associateId)
Parameters
Type Name Description
Integer associateId

The owner of the report.

Returns
Type Description
Void
Examples
NSReportEntity thing;
Integer associateId;
thing.SetAssociateId(associateId);

SetDescription(String)

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

The description of the report.

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

SetName(String)

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

The name of the report.

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

SetPublished(Bool)

Declaration
Void SetPublished(Bool published)
Parameters
Type Name Description
Bool published

Is the report published?

Returns
Type Description
Void
Examples
NSReportEntity thing;
Bool published;
thing.SetPublished(published);

SetReportCategory(Integer)

Declaration
Void SetReportCategory(Integer reportCategory)
Parameters
Type Name Description
Integer reportCategory

The category of the report. See ReportCategory.

Returns
Type Description
Void
Examples
NSReportEntity thing;
Integer reportCategory;
thing.SetReportCategory(reportCategory);

SetReportId(Integer)

Declaration
Void SetReportId(Integer reportId)
Parameters
Type Name Description
Integer reportId

The ID of the report.

Returns
Type Description
Void
Examples
NSReportEntity thing;
Integer reportId;
thing.SetReportId(reportId);

SetReportLayout(Integer)

Declaration
Void SetReportLayout(Integer reportLayout)
Parameters
Type Name Description
Integer reportLayout

The layout of the report. See ReportLayout.

Returns
Type Description
Void
Examples
NSReportEntity thing;
Integer reportLayout;
thing.SetReportLayout(reportLayout);

SetTemplateId(Integer)

Declaration
Void SetTemplateId(Integer templateId)
Parameters
Type Name Description
Integer templateId

The ID of report template.

Returns
Type Description
Void
Examples
NSReportEntity thing;
Integer templateId;
thing.SetTemplateId(templateId);
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top