Show / Hide Table of Contents

Class NSDiaryViewEntity

The DiaryView Service. The service implements all services working with the DiaryView object.

Syntax

Constructors

NSDiaryViewEntity()

Initializes a new instance of the NSDiaryViewEntity class.

Declaration
NSDiaryViewEntity

Methods

GetAssociateList()

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
NSSelectableMDOListItem[] GetAssociateList()
Returns
Type Description
NSSelectableMDOListItem[]
Examples
NSDiaryViewEntity thing;
NSSelectableMDOListItem[] associateList = thing.GetAssociateList();

GetAssocId()

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Integer GetAssocId()
Returns
Type Description
Integer

Owning associate ID for the DiaryView.

Examples
NSDiaryViewEntity thing;
Integer assocId = thing.GetAssocId();

GetDiaryViewId()

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Integer GetDiaryViewId()
Returns
Type Description
Integer

ID of the DiaryView.

Examples
NSDiaryViewEntity thing;
Integer diaryViewId = thing.GetDiaryViewId();

GetName()

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
String GetName()
Returns
Type Description
String

Name of the DiaryView.

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

GetRank()

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Integer GetRank()
Returns
Type Description
Integer

DiaryView rank.

Examples
NSDiaryViewEntity thing;
Integer rank = thing.GetRank();

GetTooltip()

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
String GetTooltip()
Returns
Type Description
String

Tooltip/description of the DiaryView.

Examples
NSDiaryViewEntity thing;
String tooltip = thing.GetTooltip();

GetTzLocationId()

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Integer GetTzLocationId()
Returns
Type Description
Integer

Default timezone location for this view.

Examples
NSDiaryViewEntity thing;
Integer tzLocationId = thing.GetTzLocationId();

GetVisibleColumns()

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Integer GetVisibleColumns()
Returns
Type Description
Integer

Number of columns that should be visible simultaneously.

Examples
NSDiaryViewEntity thing;
Integer visibleColumns = thing.GetVisibleColumns();

SetAssociateList(NSSelectableMDOListItem[])

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Void SetAssociateList(NSSelectableMDOListItem[] associateList)
Parameters
Type Name Description
NSSelectableMDOListItem[] associateList
Returns
Type Description
Void
Examples
NSDiaryViewEntity thing;
NSSelectableMDOListItem[] associateList;
thing.SetAssociateList(associateList);

SetAssocId(Integer)

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Void SetAssocId(Integer assocId)
Parameters
Type Name Description
Integer assocId

Owning associate ID for the DiaryView.

Returns
Type Description
Void
Examples
NSDiaryViewEntity thing;
Integer assocId;
thing.SetAssocId(assocId);

SetDiaryViewId(Integer)

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Void SetDiaryViewId(Integer diaryViewId)
Parameters
Type Name Description
Integer diaryViewId

ID of the DiaryView.

Returns
Type Description
Void
Examples
NSDiaryViewEntity thing;
Integer diaryViewId;
thing.SetDiaryViewId(diaryViewId);

SetName(String)

The DiaryView Service. The service implements all services working with the DiaryView object.

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

Name of the DiaryView.

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

SetRank(Integer)

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Void SetRank(Integer rank)
Parameters
Type Name Description
Integer rank

DiaryView rank.

Returns
Type Description
Void
Examples
NSDiaryViewEntity thing;
Integer rank;
thing.SetRank(rank);

SetTooltip(String)

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Void SetTooltip(String tooltip)
Parameters
Type Name Description
String tooltip

Tooltip/description of the DiaryView.

Returns
Type Description
Void
Examples
NSDiaryViewEntity thing;
String tooltip;
thing.SetTooltip(tooltip);

SetTzLocationId(Integer)

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Void SetTzLocationId(Integer tzLocationId)
Parameters
Type Name Description
Integer tzLocationId

Default timezone location for this view.

Returns
Type Description
Void
Examples
NSDiaryViewEntity thing;
Integer tzLocationId;
thing.SetTzLocationId(tzLocationId);

SetVisibleColumns(Integer)

The DiaryView Service. The service implements all services working with the DiaryView object.

Declaration
Void SetVisibleColumns(Integer visibleColumns)
Parameters
Type Name Description
Integer visibleColumns

Number of columns that should be visible simultaneously.

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