Class NSReportLabelLayoutEntity
Constructors
NSReportLabelLayoutEntity()
Initializes a new instance of the NSReportLabelLayoutEntity class.
Declaration
NSReportLabelLayoutEntity Methods
GetBottomMargin()
Declaration
Integer GetBottomMargin() Examples
NSReportLabelLayoutEntity thing;
Integer bottomMargin = thing.GetBottomMargin();
Returns
| Type | Description |
| Integer | Bottom margin in twips. |
GetCountColumns()
Declaration
Integer GetCountColumns() Examples
NSReportLabelLayoutEntity thing;
Integer countColumns = thing.GetCountColumns();
Returns
| Type | Description |
| Integer | Number of columns. |
GetCountRows()
Declaration
Integer GetCountRows() Examples
NSReportLabelLayoutEntity thing;
Integer countRows = thing.GetCountRows();
Returns
| Type | Description |
| Integer | Number of rows. |
GetDescription()
Declaration
String GetDescription() Examples
NSReportLabelLayoutEntity thing;
String description = thing.GetDescription();
Returns
| Type | Description |
| String | Description. |
GetLeftMargin()
Declaration
Integer GetLeftMargin() Examples
NSReportLabelLayoutEntity thing;
Integer leftMargin = thing.GetLeftMargin();
Returns
| Type | Description |
| Integer | Left margin in twips. |
GetName()
Declaration
String GetName() Examples
NSReportLabelLayoutEntity thing;
String name = thing.GetName();
Returns
| Type | Description |
| String | Name of the label layout. |
GetOrientation()
Declaration
Integer GetOrientation() Examples
NSReportLabelLayoutEntity thing;
Integer orientation = thing.GetOrientation();
Returns
| Type | Description |
| Integer | Paper orientation 1=portrait, 2=landscape. See <xref href="CRMScript.NetServer.ReportPaperOrientation" data-throw-if-not-resolved="false"></xref>. |
GetPaperHeight()
Declaration
Integer GetPaperHeight() Examples
NSReportLabelLayoutEntity thing;
Integer paperHeight = thing.GetPaperHeight();
Returns
| Type | Description |
| Integer | Paper height in twips. |
GetPaperWidth()
Declaration
Integer GetPaperWidth() Examples
NSReportLabelLayoutEntity thing;
Integer paperWidth = thing.GetPaperWidth();
Returns
| Type | Description |
| Integer | Paper width in twips. |
GetReportLabelLayoutId()
Declaration
Integer GetReportLabelLayoutId() Examples
NSReportLabelLayoutEntity thing;
Integer reportLabelLayoutId = thing.GetReportLabelLayoutId();
Returns
| Type | Description |
| Integer | Primary key. |
GetRightMargin()
Declaration
Integer GetRightMargin() Examples
NSReportLabelLayoutEntity thing;
Integer rightMargin = thing.GetRightMargin();
Returns
| Type | Description |
| Integer | Right margin in twips. |
GetTopMargin()
Declaration
Integer GetTopMargin() Examples
NSReportLabelLayoutEntity thing;
Integer topMargin = thing.GetTopMargin();
Returns
| Type | Description |
| Integer | Top margin in twips. |
SetBottomMargin(Integer)
Declaration
Void SetBottomMargin(Integer bottomMargin) Examples
NSReportLabelLayoutEntity thing;
Integer bottomMargin;
thing.SetBottomMargin(bottomMargin);
Parameters
| Type | Name | Description |
| Integer | bottomMargin | Bottom margin in twips. |
Returns
| Type | Description |
| Void |
SetCountColumns(Integer)
Declaration
Void SetCountColumns(Integer countColumns) Examples
NSReportLabelLayoutEntity thing;
Integer countColumns;
thing.SetCountColumns(countColumns);
Parameters
| Type | Name | Description |
| Integer | countColumns | Number og columns. |
Returns
| Type | Description |
| Void |
SetCountRows(Integer)
Declaration
Void SetCountRows(Integer countRows) Examples
NSReportLabelLayoutEntity thing;
Integer countRows;
thing.SetCountRows(countRows);
Parameters
| Type | Name | Description |
| Integer | countRows | Number of rows. |
Returns
| Type | Description |
| Void |
SetDescription(String)
Declaration
Void SetDescription(String description) Examples
NSReportLabelLayoutEntity thing;
String description;
thing.SetDescription(description);
Parameters
| Type | Name | Description |
| String | description | Description. |
Returns
| Type | Description |
| Void |
SetLeftMargin(Integer)
Declaration
Void SetLeftMargin(Integer leftMargin) Examples
NSReportLabelLayoutEntity thing;
Integer leftMargin;
thing.SetLeftMargin(leftMargin);
Parameters
| Type | Name | Description |
| Integer | leftMargin | Left margin in twips. |
Returns
| Type | Description |
| Void |
SetName(String)
Declaration
Void SetName(String name) Examples
NSReportLabelLayoutEntity thing;
String name;
thing.SetName(name);
Parameters
| Type | Name | Description |
| String | name | Name of the label layout. |
Returns
| Type | Description |
| Void |
SetOrientation(Integer)
Declaration
Void SetOrientation(Integer orientation) Examples
NSReportLabelLayoutEntity thing;
Integer orientation;
thing.SetOrientation(orientation);
Parameters
| Type | Name | Description |
| Integer | orientation | Paper orientation. 1=portrait, 2=landscape. See <xref href="CRMScript.NetServer.ReportPaperOrientation" data-throw-if-not-resolved="false"></xref>. |
Returns
| Type | Description |
| Void |
SetPaperHeight(Integer)
Declaration
Void SetPaperHeight(Integer paperHeight) Examples
NSReportLabelLayoutEntity thing;
Integer paperHeight;
thing.SetPaperHeight(paperHeight);
Parameters
| Type | Name | Description |
| Integer | paperHeight | Paper height in twips. |
Returns
| Type | Description |
| Void |
SetPaperWidth(Integer)
Declaration
Void SetPaperWidth(Integer paperWidth) Examples
NSReportLabelLayoutEntity thing;
Integer paperWidth;
thing.SetPaperWidth(paperWidth);
Parameters
| Type | Name | Description |
| Integer | paperWidth | Paper width in twips. |
Returns
| Type | Description |
| Void |
SetReportLabelLayoutId(Integer)
Declaration
Void SetReportLabelLayoutId(Integer reportLabelLayoutId) Examples
NSReportLabelLayoutEntity thing;
Integer reportLabelLayoutId;
thing.SetReportLabelLayoutId(reportLabelLayoutId);
Parameters
| Type | Name | Description |
| Integer | reportLabelLayoutId | Primary key. |
Returns
| Type | Description |
| Void |