Class NSActivitySummaryItem
Summary details about appointments and documents.
Constructors
NSActivitySummaryItem()
Initializes a new instance of the NSActivitySummaryItem class.
Declaration
NSActivitySummaryItem Methods
GetAppointmentId()
Returns the appointment ID (primary key).
Declaration
Integer GetAppointmentId() Examples
NSActivitySummaryItem thing;
Integer appointmentId = thing.GetAppointmentId();
Returns
| Type | Description |
| Integer | Appointment Id. |
GetCompleted()
The Completed state. NotStarted(1) or Completed(3)
Declaration
Integer GetCompleted() Examples
NSActivitySummaryItem thing;
Integer completed = thing.GetCompleted();
Returns
| Type | Description |
| Integer |
GetDate()
Start/Document date.
Declaration
DateTime GetDate() Examples
NSActivitySummaryItem thing;
DateTime date = thing.GetDate();
Returns
| Type | Description |
| DateTime |
GetDescription()
The appointment's textbox; document title.
Declaration
String GetDescription() Examples
NSActivitySummaryItem thing;
String description = thing.GetDescription();
Returns
| Type | Description |
| String |
GetDocumentId()
Returns the document ID.
Declaration
Integer GetDocumentId() Examples
NSActivitySummaryItem thing;
Integer documentId = thing.GetDocumentId();
Returns
| Type | Description |
| Integer | Document ID - 0 if not a document. |
GetRegistered()
Returns the registered date.
Declaration
DateTime GetRegistered() Examples
NSActivitySummaryItem thing;
DateTime registered = thing.GetRegistered();
Returns
| Type | Description |
| DateTime |
SetAppointmentId(Integer)
Primary key
Declaration
Void SetAppointmentId(Integer appointmentId) Examples
NSActivitySummaryItem thing;
Integer appointmentId;
thing.SetAppointmentId(appointmentId);
Parameters
| Type | Name | Description |
| Integer | appointmentId |
Returns
| Type | Description |
| Void |
SetCompleted(Integer)
Sets the Completed state. NotStarted(1) or Completed(3)
Declaration
Void SetCompleted(Integer completed) Examples
NSActivitySummaryItem thing;
Integer completed;
thing.SetCompleted(completed);
Parameters
| Type | Name | Description |
| Integer | completed |
Returns
| Type | Description |
| Void |
SetDate(DateTime)
Start/Document date
Declaration
Void SetDate(DateTime date) Examples
NSActivitySummaryItem thing;
DateTime date;
thing.SetDate(date);
Parameters
| Type | Name | Description |
| DateTime | date |
Returns
| Type | Description |
| Void |
SetDescription(String)
Sets the appointment's textbox; document title
Declaration
Void SetDescription(String description) Examples
NSActivitySummaryItem thing;
String description;
thing.SetDescription(description);
Parameters
| Type | Name | Description |
| String | description |
Returns
| Type | Description |
| Void |
SetDocumentId(Integer)
Sets the document ID
Declaration
Void SetDocumentId(Integer documentId) Examples
NSActivitySummaryItem thing;
Integer documentId;
thing.SetDocumentId(documentId);
Parameters
| Type | Name | Description |
| Integer | documentId | Document ID; 0 if not a document. |
Returns
| Type | Description |
| Void |