Show / Hide Table of Contents

Class NSPhoneListItem

Syntax

Constructors

NSPhoneListItem()

Initializes a new instance of the NSPhoneListItem class.

Declaration
NSPhoneListItem

Methods

GetId()

Declaration
Integer GetId()
Returns
Type Description
Integer

The contact or person's Id.

Examples
NSPhoneListItem thing;
Integer id = thing.GetId();

GetName()

Declaration
String GetName()
Returns
Type Description
String

The contact or person's name.

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

GetPersonCellPhone()

Declaration
String GetPersonCellPhone()
Returns
Type Description
String

Person Cell Phone.

Examples
NSPhoneListItem thing;
String personCellPhone = thing.GetPersonCellPhone();

GetPersonDirectPhone()

Declaration
String GetPersonDirectPhone()
Returns
Type Description
String

Person Direct Phone.

Examples
NSPhoneListItem thing;
String personDirectPhone = thing.GetPersonDirectPhone();

GetPersonEmail()

Declaration
String GetPersonEmail()
Returns
Type Description
String

The address itself.

Examples
NSPhoneListItem thing;
String personEmail = thing.GetPersonEmail();

GetPersonFaxNumber()

Declaration
String GetPersonFaxNumber()
Returns
Type Description
String

Actual phone number as entered by the user.

Examples
NSPhoneListItem thing;
String personFaxNumber = thing.GetPersonFaxNumber();

GetPersonPagerNumber()

Declaration
String GetPersonPagerNumber()
Returns
Type Description
String

Actual phone number as entered by the user.

Examples
NSPhoneListItem thing;
String personPagerNumber = thing.GetPersonPagerNumber();

GetPersonPrivatePhone()

Declaration
String GetPersonPrivatePhone()
Returns
Type Description
String

Person Private Phone.

Examples
NSPhoneListItem thing;
String personPrivatePhone = thing.GetPersonPrivatePhone();

GetTooltip()

Declaration
String GetTooltip()
Returns
Type Description
String
Examples
NSPhoneListItem thing;
String tooltip = thing.GetTooltip();

GetUniqueId()

Declaration
String GetUniqueId()
Returns
Type Description
String

Property setting a unique id indicating if this is a person or contact.

Examples
NSPhoneListItem thing;
String uniqueId = thing.GetUniqueId();

SetId(Integer)

Declaration
Void SetId(Integer id)
Parameters
Type Name Description
Integer id

The contact or person's Id.

Returns
Type Description
Void
Examples
NSPhoneListItem thing;
Integer id;
thing.SetId(id);

SetName(String)

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

The contact or person's name.

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

SetPersonCellPhone(String)

Declaration
Void SetPersonCellPhone(String personCellPhone)
Parameters
Type Name Description
String personCellPhone

Person Cell Phone.

Returns
Type Description
Void
Examples
NSPhoneListItem thing;
String personCellPhone;
thing.SetPersonCellPhone(personCellPhone);

SetPersonDirectPhone(String)

Declaration
Void SetPersonDirectPhone(String personDirectPhone)
Parameters
Type Name Description
String personDirectPhone

Person Direct Phone.

Returns
Type Description
Void
Examples
NSPhoneListItem thing;
String personDirectPhone;
thing.SetPersonDirectPhone(personDirectPhone);

SetPersonEmail(String)

Declaration
Void SetPersonEmail(String personEmail)
Parameters
Type Name Description
String personEmail

The address itself.

Returns
Type Description
Void
Examples
NSPhoneListItem thing;
String personEmail;
thing.SetPersonEmail(personEmail);

SetPersonFaxNumber(String)

Declaration
Void SetPersonFaxNumber(String personFaxNumber)
Parameters
Type Name Description
String personFaxNumber

Actual phone number as entered by the user.

Returns
Type Description
Void
Examples
NSPhoneListItem thing;
String personFaxNumber;
thing.SetPersonFaxNumber(personFaxNumber);

SetPersonPagerNumber(String)

Declaration
Void SetPersonPagerNumber(String personPagerNumber)
Parameters
Type Name Description
String personPagerNumber

Actual phone number as entered by the user.

Returns
Type Description
Void
Examples
NSPhoneListItem thing;
String personPagerNumber;
thing.SetPersonPagerNumber(personPagerNumber);

SetPersonPrivatePhone(String)

Declaration
Void SetPersonPrivatePhone(String personPrivatePhone)
Parameters
Type Name Description
String personPrivatePhone

Person Private Phone.

Returns
Type Description
Void
Examples
NSPhoneListItem thing;
String personPrivatePhone;
thing.SetPersonPrivatePhone(personPrivatePhone);

SetTooltip(String)

Declaration
Void SetTooltip(String tooltip)
Parameters
Type Name Description
String tooltip
Returns
Type Description
Void
Examples
NSPhoneListItem thing;
String tooltip;
thing.SetTooltip(tooltip);

SetUniqueId(String)

Declaration
Void SetUniqueId(String uniqueId)
Parameters
Type Name Description
String uniqueId

Property setting a unique id indicating if this is a person or contact.

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