Class NSDiaryViewEntity
The DiaryView Service. The service implements all services working with the DiaryView object.
Constructors
NSDiaryViewEntity()
Initializes a new instance of the NSDiaryViewEntity class.
Declaration
NSDiaryViewEntity Methods
GetAssociateList()
Declaration
NSSelectableMDOListItem[] GetAssociateList() Examples
NSDiaryViewEntity thing;
NSSelectableMDOListItem[] associateList = thing.GetAssociateList();
Returns
| Type | Description |
| NSSelectableMDOListItem[] |
GetAssocId()
Declaration
Integer GetAssocId() Examples
NSDiaryViewEntity thing;
Integer assocId = thing.GetAssocId();
Returns
| Type | Description |
| Integer | Owning associate ID for the DiaryView. |
GetDiaryViewId()
Declaration
Integer GetDiaryViewId() Examples
NSDiaryViewEntity thing;
Integer diaryViewId = thing.GetDiaryViewId();
Returns
| Type | Description |
| Integer | ID of the DiaryView. |
GetName()
Declaration
String GetName() Examples
NSDiaryViewEntity thing;
String name = thing.GetName();
Returns
| Type | Description |
| String | Name of the DiaryView. |
GetRank()
Declaration
Integer GetRank() Examples
NSDiaryViewEntity thing;
Integer rank = thing.GetRank();
Returns
| Type | Description |
| Integer | DiaryView rank. |
GetTooltip()
Declaration
String GetTooltip() Examples
NSDiaryViewEntity thing;
String tooltip = thing.GetTooltip();
Returns
| Type | Description |
| String | Tooltip/description of the DiaryView. |
GetTzLocationId()
Declaration
Integer GetTzLocationId() Examples
NSDiaryViewEntity thing;
Integer tzLocationId = thing.GetTzLocationId();
Returns
| Type | Description |
| Integer | Default timezone location for this view. |
GetVisibleColumns()
Declaration
Integer GetVisibleColumns() Examples
NSDiaryViewEntity thing;
Integer visibleColumns = thing.GetVisibleColumns();
Returns
| Type | Description |
| Integer | Number of columns that should be visible simultaneously. |
SetAssociateList(NSSelectableMDOListItem[])
Declaration
Void SetAssociateList(NSSelectableMDOListItem[] associateList) Examples
NSDiaryViewEntity thing;
NSSelectableMDOListItem[] associateList;
thing.SetAssociateList(associateList);
Parameters
| Type | Name | Description |
| NSSelectableMDOListItem[] | associateList |
Returns
| Type | Description |
| Void |
SetAssocId(Integer)
Declaration
Void SetAssocId(Integer assocId) Examples
NSDiaryViewEntity thing;
Integer assocId;
thing.SetAssocId(assocId);
Parameters
| Type | Name | Description |
| Integer | assocId | Owning associate ID for the DiaryView. |
Returns
| Type | Description |
| Void |
SetDiaryViewId(Integer)
Declaration
Void SetDiaryViewId(Integer diaryViewId) Examples
NSDiaryViewEntity thing;
Integer diaryViewId;
thing.SetDiaryViewId(diaryViewId);
Parameters
| Type | Name | Description |
| Integer | diaryViewId | ID of the DiaryView. |
Returns
| Type | Description |
| Void |
SetName(String)
Declaration
Void SetName(String name) Examples
NSDiaryViewEntity thing;
String name;
thing.SetName(name);
Parameters
| Type | Name | Description |
| String | name | Name of the DiaryView. |
Returns
| Type | Description |
| Void |
SetRank(Integer)
Declaration
Void SetRank(Integer rank) Examples
NSDiaryViewEntity thing;
Integer rank;
thing.SetRank(rank);
Parameters
| Type | Name | Description |
| Integer | rank | DiaryView rank. |
Returns
| Type | Description |
| Void |
SetTooltip(String)
Declaration
Void SetTooltip(String tooltip) Examples
NSDiaryViewEntity thing;
String tooltip;
thing.SetTooltip(tooltip);
Parameters
| Type | Name | Description |
| String | tooltip | Tooltip/description of the DiaryView. |
Returns
| Type | Description |
| Void |
SetTzLocationId(Integer)
Declaration
Void SetTzLocationId(Integer tzLocationId) Examples
NSDiaryViewEntity thing;
Integer tzLocationId;
thing.SetTzLocationId(tzLocationId);
Parameters
| Type | Name | Description |
| Integer | tzLocationId | Default timezone location for this view. |
Returns
| Type | Description |
| Void |
SetVisibleColumns(Integer)
Declaration
Void SetVisibleColumns(Integer visibleColumns) Examples
NSDiaryViewEntity thing;
Integer visibleColumns;
thing.SetVisibleColumns(visibleColumns);
Parameters
| Type | Name | Description |
| Integer | visibleColumns | Number of columns that should be visible simultaneously. |
Returns
| Type | Description |
| Void |