Class NSReportEntity
Constructors
NSReportEntity()
Initializes a new instance of the NSReportEntity class.
Declaration
NSReportEntity Methods
GetAssociateId()
Declaration
Integer GetAssociateId() Examples
NSReportEntity thing;
Integer associateId = thing.GetAssociateId();
Returns
| Type | Description |
| Integer | The owner of the report. |
GetDescription()
Declaration
String GetDescription() Examples
NSReportEntity thing;
String description = thing.GetDescription();
Returns
| Type | Description |
| String | The description of the report. |
GetName()
Declaration
String GetName() Examples
NSReportEntity thing;
String name = thing.GetName();
Returns
| Type | Description |
| String | The name of the report. |
GetPublished()
Declaration
Bool GetPublished() Examples
NSReportEntity thing;
Bool published = thing.GetPublished();
Returns
| Type | Description |
| Bool | Is the report published? |
GetReportCategory()
Declaration
Integer GetReportCategory() Examples
NSReportEntity thing;
Integer reportCategory = thing.GetReportCategory();
Returns
| Type | Description |
| Integer | The category of the report. See <xref href="CRMScript.NetServer.ReportCategory" data-throw-if-not-resolved="false"></xref>. |
GetReportId()
Declaration
Integer GetReportId() Examples
NSReportEntity thing;
Integer reportId = thing.GetReportId();
Returns
| Type | Description |
| Integer | The ID of the report. |
GetReportLayout()
Declaration
Integer GetReportLayout() Examples
NSReportEntity thing;
Integer reportLayout = thing.GetReportLayout();
Returns
| Type | Description |
| Integer | The layout of the report. See <xref href="CRMScript.NetServer.ReportLayout" data-throw-if-not-resolved="false"></xref> |
GetTemplateId()
Declaration
Integer GetTemplateId() Examples
NSReportEntity thing;
Integer templateId = thing.GetTemplateId();
Returns
| Type | Description |
| Integer | The ID of report template. |
SetAssociateId(Integer)
Declaration
Void SetAssociateId(Integer associateId) Examples
NSReportEntity thing;
Integer associateId;
thing.SetAssociateId(associateId);
Parameters
| Type | Name | Description |
| Integer | associateId | The owner of the report. |
Returns
| Type | Description |
| Void |
SetDescription(String)
Declaration
Void SetDescription(String description) Examples
NSReportEntity thing;
String description;
thing.SetDescription(description);
Parameters
| Type | Name | Description |
| String | description | The description of the report. |
Returns
| Type | Description |
| Void |
SetName(String)
Declaration
Void SetName(String name) Examples
NSReportEntity thing;
String name;
thing.SetName(name);
Parameters
| Type | Name | Description |
| String | name | The name of the report. |
Returns
| Type | Description |
| Void |
SetPublished(Bool)
Declaration
Void SetPublished(Bool published) Examples
NSReportEntity thing;
Bool published;
thing.SetPublished(published);
Parameters
| Type | Name | Description |
| Bool | published | Is the report published? |
Returns
| Type | Description |
| Void |
SetReportCategory(Integer)
Declaration
Void SetReportCategory(Integer reportCategory) Examples
NSReportEntity thing;
Integer reportCategory;
thing.SetReportCategory(reportCategory);
Parameters
| Type | Name | Description |
| Integer | reportCategory | The category of the report. See <xref href="CRMScript.NetServer.ReportCategory" data-throw-if-not-resolved="false"></xref>. |
Returns
| Type | Description |
| Void |
SetReportId(Integer)
Declaration
Void SetReportId(Integer reportId) Examples
NSReportEntity thing;
Integer reportId;
thing.SetReportId(reportId);
Parameters
| Type | Name | Description |
| Integer | reportId | The ID of the report. |
Returns
| Type | Description |
| Void |
SetReportLayout(Integer)
Declaration
Void SetReportLayout(Integer reportLayout) Examples
NSReportEntity thing;
Integer reportLayout;
thing.SetReportLayout(reportLayout);
Parameters
| Type | Name | Description |
| Integer | reportLayout | The layout of the report. See <xref href="CRMScript.NetServer.ReportLayout" data-throw-if-not-resolved="false"></xref>. |
Returns
| Type | Description |
| Void |