Class NSPhoneListItem
Constructors
NSPhoneListItem()
Initializes a new instance of the NSPhoneListItem class.
Declaration
NSPhoneListItem Methods
GetId()
Declaration
Integer GetId() Examples
NSPhoneListItem thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer | The contact or person's Id. |
GetName()
Declaration
String GetName() Examples
NSPhoneListItem thing;
String name = thing.GetName();
Returns
| Type | Description |
| String | The contact or person's name. |
GetPersonCellPhone()
Declaration
String GetPersonCellPhone() Examples
NSPhoneListItem thing;
String personCellPhone = thing.GetPersonCellPhone();
Returns
| Type | Description |
| String | Person Cell Phone. |
GetPersonDirectPhone()
Declaration
String GetPersonDirectPhone() Examples
NSPhoneListItem thing;
String personDirectPhone = thing.GetPersonDirectPhone();
Returns
| Type | Description |
| String | Person Direct Phone. |
GetPersonEmail()
Declaration
String GetPersonEmail() Examples
NSPhoneListItem thing;
String personEmail = thing.GetPersonEmail();
Returns
| Type | Description |
| String | The address itself. |
GetPersonFaxNumber()
Declaration
String GetPersonFaxNumber() Examples
NSPhoneListItem thing;
String personFaxNumber = thing.GetPersonFaxNumber();
Returns
| Type | Description |
| String | Actual phone number as entered by the user. |
GetPersonPagerNumber()
Declaration
String GetPersonPagerNumber() Examples
NSPhoneListItem thing;
String personPagerNumber = thing.GetPersonPagerNumber();
Returns
| Type | Description |
| String | Actual phone number as entered by the user. |
GetPersonPrivatePhone()
Declaration
String GetPersonPrivatePhone() Examples
NSPhoneListItem thing;
String personPrivatePhone = thing.GetPersonPrivatePhone();
Returns
| Type | Description |
| String | Person Private Phone. |
GetTooltip()
Declaration
String GetTooltip() Examples
NSPhoneListItem thing;
String tooltip = thing.GetTooltip();
Returns
| Type | Description |
| String |
GetUniqueId()
Declaration
String GetUniqueId() Examples
NSPhoneListItem thing;
String uniqueId = thing.GetUniqueId();
Returns
| Type | Description |
| String | Property setting a unique id indicating if this is a person or contact. |
SetId(Integer)
Declaration
Void SetId(Integer id) Examples
NSPhoneListItem thing;
Integer id;
thing.SetId(id);
Parameters
| Type | Name | Description |
| Integer | id | The contact or person's Id. |
Returns
| Type | Description |
| Void |
SetName(String)
Declaration
Void SetName(String name) Examples
NSPhoneListItem thing;
String name;
thing.SetName(name);
Parameters
| Type | Name | Description |
| String | name | The contact or person's name. |
Returns
| Type | Description |
| Void |
SetPersonCellPhone(String)
Declaration
Void SetPersonCellPhone(String personCellPhone) Examples
NSPhoneListItem thing;
String personCellPhone;
thing.SetPersonCellPhone(personCellPhone);
Parameters
| Type | Name | Description |
| String | personCellPhone | Person Cell Phone. |
Returns
| Type | Description |
| Void |
SetPersonDirectPhone(String)
Declaration
Void SetPersonDirectPhone(String personDirectPhone) Examples
NSPhoneListItem thing;
String personDirectPhone;
thing.SetPersonDirectPhone(personDirectPhone);
Parameters
| Type | Name | Description |
| String | personDirectPhone | Person Direct Phone. |
Returns
| Type | Description |
| Void |
SetPersonEmail(String)
Declaration
Void SetPersonEmail(String personEmail) Examples
NSPhoneListItem thing;
String personEmail;
thing.SetPersonEmail(personEmail);
Parameters
| Type | Name | Description |
| String | personEmail | The address itself. |
Returns
| Type | Description |
| Void |
SetPersonFaxNumber(String)
Declaration
Void SetPersonFaxNumber(String personFaxNumber) Examples
NSPhoneListItem thing;
String personFaxNumber;
thing.SetPersonFaxNumber(personFaxNumber);
Parameters
| Type | Name | Description |
| String | personFaxNumber | Actual phone number as entered by the user. |
Returns
| Type | Description |
| Void |
SetPersonPagerNumber(String)
Declaration
Void SetPersonPagerNumber(String personPagerNumber) Examples
NSPhoneListItem thing;
String personPagerNumber;
thing.SetPersonPagerNumber(personPagerNumber);
Parameters
| Type | Name | Description |
| String | personPagerNumber | Actual phone number as entered by the user. |
Returns
| Type | Description |
| Void |
SetPersonPrivatePhone(String)
Declaration
Void SetPersonPrivatePhone(String personPrivatePhone) Examples
NSPhoneListItem thing;
String personPrivatePhone;
thing.SetPersonPrivatePhone(personPrivatePhone);
Parameters
| Type | Name | Description |
| String | personPrivatePhone | Person Private Phone. |
Returns
| Type | Description |
| Void |