Class NSPhoneListItem
Syntax
Constructors
NSPhoneListItem()
Initializes a new instance of the NSPhoneListItem class.
Declaration
Methods
GetId()
Declaration
Returns
Type |
Description |
Integer |
The contact or person's Id.
|
Examples
NSPhoneListItem thing;
Integer id = thing.GetId();
GetName()
Declaration
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
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();
Declaration
String GetPersonPagerNumber()
Returns
Type |
Description |
String |
Actual phone number as entered by the user.
|
NSPhoneListItem thing;
String personPagerNumber = thing.GetPersonPagerNumber();
GetPersonPrivatePhone()
Declaration
String GetPersonPrivatePhone()
Returns
Type |
Description |
String |
Person Private Phone.
|
Examples
NSPhoneListItem thing;
String personPrivatePhone = thing.GetPersonPrivatePhone();
Declaration
Returns
NSPhoneListItem thing;
String tooltip = thing.GetTooltip();
GetUniqueId()
Declaration
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
Parameters
Type |
Name |
Description |
Integer |
id |
The contact or person's Id.
|
Returns
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
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
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
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
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
Examples
NSPhoneListItem thing;
String personFaxNumber;
thing.SetPersonFaxNumber(personFaxNumber);
Declaration
Void SetPersonPagerNumber(String personPagerNumber)
Parameters
Type |
Name |
Description |
String |
personPagerNumber |
Actual phone number as entered by the user.
|
Returns
NSPhoneListItem thing;
String personPagerNumber;
thing.SetPersonPagerNumber(personPagerNumber);
SetPersonPrivatePhone(String)
Declaration
Void SetPersonPrivatePhone(String personPrivatePhone)
Parameters
Type |
Name |
Description |
String |
personPrivatePhone |
Person Private Phone.
|
Returns
Examples
NSPhoneListItem thing;
String personPrivatePhone;
thing.SetPersonPrivatePhone(personPrivatePhone);
Declaration
Void SetTooltip(String tooltip)
Parameters
Type |
Name |
Description |
String |
tooltip |
|
Returns
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
Examples
NSPhoneListItem thing;
String uniqueId;
thing.SetUniqueId(uniqueId);