Class NSMailMergeTask

Properties describing a task to create on recipients of a mail merge.

Constructors

NSMailMergeTask()

Initializes a new instance of the NSMailMergeTask class.

Declaration

NSMailMergeTask

Methods

GetCompleted()

Declaration

Integer GetCompleted()

Examples

NSMailMergeTask thing;
Integer completed = thing.GetCompleted();

Returns

Type Description
Integer Completed status for task.

GetDescription()

Declaration

String GetDescription()

Examples

NSMailMergeTask thing;
String description = thing.GetDescription();

Returns

Type Description
String Text describing task.

GetDuration()

Declaration

Integer GetDuration()

Examples

NSMailMergeTask thing;
Integer duration = thing.GetDuration();

Returns

Type Description
Integer Duration of task.

GetOwnerAssociateId()

Declaration

Integer GetOwnerAssociateId()

Examples

NSMailMergeTask thing;
Integer ownerAssociateId = thing.GetOwnerAssociateId();

Returns

Type Description
Integer Associate identity of who should be set as owner of the task.

GetPriorityId()

Declaration

Integer GetPriorityId()

Examples

NSMailMergeTask thing;
Integer priorityId = thing.GetPriorityId();

Returns

Type Description
Integer Priority of task.

GetProjectId()

Declaration

Integer GetProjectId()

Examples

NSMailMergeTask thing;
Integer projectId = thing.GetProjectId();

Returns

Type Description
Integer Project identity to set on task.

GetSaleId()

Declaration

Integer GetSaleId()

Examples

NSMailMergeTask thing;
Integer saleId = thing.GetSaleId();

Returns

Type Description
Integer Sale identity to set on task.

GetSingleEntryOnEachCompany()

Declaration

Bool GetSingleEntryOnEachCompany()

Examples

NSMailMergeTask thing;
Bool singleEntryOnEachCompany = thing.GetSingleEntryOnEachCompany();

Returns

Type Description
Bool Should we only create one task on each company? If false, separate tasks will be created for all persons from the same company.

GetStartDate()

Declaration

DateTime GetStartDate()

Examples

NSMailMergeTask thing;
DateTime startDate = thing.GetStartDate();

Returns

Type Description
DateTime When the task should start.

GetTypeId()

Declaration

Integer GetTypeId()

Examples

NSMailMergeTask thing;
Integer typeId = thing.GetTypeId();

Returns

Type Description
Integer Type identity to set on task.

GetVisibleFor()

Declaration

NSVisibleFor GetVisibleFor()

Examples

NSMailMergeTask thing;
NSVisibleFor visibleFor = thing.GetVisibleFor();

Returns

Type Description
NSVisibleFor Who the task should be visible for.

SetCompleted(Integer)

Declaration

Void SetCompleted(Integer completed)

Examples

NSMailMergeTask thing;
Integer completed;
thing.SetCompleted(completed);

Parameters

Type Name Description
Integer completed Completed status for task.

Returns

Type Description
Void

SetDescription(String)

Declaration

Void SetDescription(String description)

Examples

NSMailMergeTask thing;
String description;
thing.SetDescription(description);

Parameters

Type Name Description
String description Text describing task.

Returns

Type Description
Void

SetDuration(Integer)

Declaration

Void SetDuration(Integer duration)

Examples

NSMailMergeTask thing;
Integer duration;
thing.SetDuration(duration);

Parameters

Type Name Description
Integer duration Duration of task.

Returns

Type Description
Void

SetOwnerAssociateId(Integer)

Declaration

Void SetOwnerAssociateId(Integer ownerAssociateId)

Examples

NSMailMergeTask thing;
Integer ownerAssociateId;
thing.SetOwnerAssociateId(ownerAssociateId);

Parameters

Type Name Description
Integer ownerAssociateId Associate identity of who should be set as owner of the task.

Returns

Type Description
Void

SetPriorityId(Integer)

Declaration

Void SetPriorityId(Integer priorityId)

Examples

NSMailMergeTask thing;
Integer priorityId;
thing.SetPriorityId(priorityId);

Parameters

Type Name Description
Integer priorityId Priority of task.

Returns

Type Description
Void

SetProjectId(Integer)

Declaration

Void SetProjectId(Integer projectId)

Examples

NSMailMergeTask thing;
Integer projectId;
thing.SetProjectId(projectId);

Parameters

Type Name Description
Integer projectId Project identity to set on task.

Returns

Type Description
Void

SetSaleId(Integer)

Declaration

Void SetSaleId(Integer saleId)

Examples

NSMailMergeTask thing;
Integer saleId;
thing.SetSaleId(saleId);

Parameters

Type Name Description
Integer saleId Sale identity to set on task.

Returns

Type Description
Void

SetSingleEntryOnEachCompany(Bool)

Declaration

Void SetSingleEntryOnEachCompany(Bool singleEntryOnEachCompany)

Examples

NSMailMergeTask thing;
Bool singleEntryOnEachCompany;
thing.SetSingleEntryOnEachCompany(singleEntryOnEachCompany);

Parameters

Type Name Description
Bool singleEntryOnEachCompany Should we only create one task on each company? If false, separate tasks will be created for all persons from the same company.

Returns

Type Description
Void

SetStartDate(DateTime)

Declaration

Void SetStartDate(DateTime startDate)

Examples

NSMailMergeTask thing;
DateTime startDate;
thing.SetStartDate(startDate);

Parameters

Type Name Description
DateTime startDate When the task should start.

Returns

Type Description
Void

SetTypeId(Integer)

Declaration

Void SetTypeId(Integer typeId)

Examples

NSMailMergeTask thing;
Integer typeId;
thing.SetTypeId(typeId);

Parameters

Type Name Description
Integer typeId Type identity to set on task.

Returns

Type Description
Void

SetVisibleFor(NSVisibleFor)

Declaration

Void SetVisibleFor(NSVisibleFor visibleFor)

Examples

NSMailMergeTask thing;
NSVisibleFor visibleFor;
thing.SetVisibleFor(visibleFor);

Parameters

Type Name Description
NSVisibleFor visibleFor Who the task should be visible for.

Returns

Type Description
Void