Class NSPhoneListPreferences

Search preferences for a phone list search.

Constructors

NSPhoneListPreferences()

Initializes a new instance of the NSPhoneListPreferences class.

Declaration

NSPhoneListPreferences

Methods

GetSearchCompany()

Declaration

Bool GetSearchCompany()

Examples

NSPhoneListPreferences thing;
Bool searchCompany = thing.GetSearchCompany();

Returns

Type Description
Bool True if you want to search for Companies by their name.

GetSearchDepartment()

Declaration

Bool GetSearchDepartment()

Examples

NSPhoneListPreferences thing;
Bool searchDepartment = thing.GetSearchDepartment();

Returns

Type Description
Bool True if you want to search for Departments where your colleagues work.

GetSearchFirstname()

Declaration

Bool GetSearchFirstname()

Examples

NSPhoneListPreferences thing;
Bool searchFirstname = thing.GetSearchFirstname();

Returns

Type Description
Bool True if you want to search for Persons by their firstname.

GetSearchLastname()

Declaration

Bool GetSearchLastname()

Examples

NSPhoneListPreferences thing;
Bool searchLastname = thing.GetSearchLastname();

Returns

Type Description
Bool True if you want to search for Persons by their last name.

GetSearchModeCompany()

Declaration

Integer GetSearchModeCompany()

Examples

NSPhoneListPreferences thing;
Integer searchMode = thing.GetSearchModeCompany();

Returns

Type Description
Integer See <xref href="CRMScript.NetServer.StringSearchType" data-throw-if-not-resolved="false"></xref>

GetSearchModeDepartment()

Declaration

Integer GetSearchModeDepartment()

Examples

NSPhoneListPreferences thing;
Integer searchMode = thing.GetSearchModeDepartment();

Returns

Type Description
Integer See <xref href="CRMScript.NetServer.StringSearchType" data-throw-if-not-resolved="false"></xref>

GetSearchModeFirstname()

Declaration

Integer GetSearchModeFirstname()

Examples

NSPhoneListPreferences thing;
Integer searchMode = thing.GetSearchModeFirstname();

Returns

Type Description
Integer See <xref href="CRMScript.NetServer.StringSearchType" data-throw-if-not-resolved="false"></xref>

GetSearchModeLastname()

Declaration

Integer GetSearchModeLastname()

Examples

NSPhoneListPreferences thing;
Integer searchMode = thing.GetSearchModeLastname();

Returns

Type Description
Integer See <xref href="CRMScript.NetServer.StringSearchType" data-throw-if-not-resolved="false"></xref>

SetSearchCompany(Bool)

Declaration

Void SetSearchCompany(Bool searchCompany)

Examples

NSPhoneListPreferences thing;
Bool searchCompany;
thing.SetSearchCompany(searchCompany);

Parameters

Type Name Description
Bool searchCompany True if you want to search for Companies by their name.

Returns

Type Description
Void

SetSearchDepartment(Bool)

Declaration

Void SetSearchDepartment(Bool searchDepartment)

Examples

NSPhoneListPreferences thing;
Bool searchDepartment;
thing.SetSearchDepartment(searchDepartment);

Parameters

Type Name Description
Bool searchDepartment True if you want to search for Departments where your colleagues work.

Returns

Type Description
Void

SetSearchFirstname(Bool)

Declaration

Void SetSearchFirstname(Bool searchFirstname)

Examples

NSPhoneListPreferences thing;
Bool searchFirstname;
thing.SetSearchFirstname(searchFirstname);

Parameters

Type Name Description
Bool searchFirstname True if you want to search for Persons by their firstname.

Returns

Type Description
Void

SetSearchLastname(Bool)

Declaration

Void SetSearchLastname(Bool searchLastname)

Examples

NSPhoneListPreferences thing;
Bool searchLastname;
thing.SetSearchLastname(searchLastname);

Parameters

Type Name Description
Bool searchLastname True if you want to search for Persons by their last name.

Returns

Type Description
Void

SetSearchModeCompany(Integer)

Declaration

Void SetSearchModeCompany(Integer searchMode)

Examples

NSPhoneListPreferences thing;
Integer searchMode;
thing.SetSearchModeCompany(searchMode);

Parameters

Type Name Description
Integer searchMode See <xref href="CRMScript.NetServer.StringSearchType" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetSearchModeDepartment(Integer)

Declaration

Void SetSearchModeDepartment(Integer searchMode)

Examples

NSPhoneListPreferences thing;
Integer searchMode;
thing.SetSearchModeDepartment(searchMode);

Parameters

Type Name Description
Integer searchMode See <xref href="CRMScript.NetServer.StringSearchType" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetSearchModeFirstname(Integer)

Declaration

Void SetSearchModeFirstname(Integer searchMode)

Examples

NSPhoneListPreferences thing;
Integer searchMode;
thing.SetSearchModeFirstname(searchMode);

Parameters

Type Name Description
Integer searchMode See <xref href="CRMScript.NetServer.StringSearchType" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetSearchModeLastname(Integer)

Declaration

Void SetSearchModeLastname(Integer searchMode)

Examples

NSPhoneListPreferences thing;
Integer searchMode;
thing.SetSearchModeLastname(searchMode);

Parameters

Type Name Description
Integer searchMode See <xref href="CRMScript.NetServer.StringSearchType" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void