Class NSPhoneListItem
Syntax
Constructors
NSPhoneListItem()
Initializes a new instance of the NSPhoneListItem class.
Introduced or updated in version: 7
Declaration
NSPhoneListItem
Methods
GetId()
Introduced or updated in version: 7
Declaration
Integer GetId()
Returns
Type | Description |
---|---|
Integer | The contact or person's Id. |
Examples
NSPhoneListItem thing;
Integer id = thing.GetId();
GetName()
Introduced or updated in version: 7
Declaration
String GetName()
Returns
Type | Description |
---|---|
String | The contact or person's name. |
Examples
NSPhoneListItem thing;
String name = thing.GetName();
GetPersonCellPhone()
Introduced or updated in version: 7
Declaration
String GetPersonCellPhone()
Returns
Type | Description |
---|---|
String | Person Cell Phone. |
Examples
NSPhoneListItem thing;
String personCellPhone = thing.GetPersonCellPhone();
GetPersonDirectPhone()
Introduced or updated in version: 7
Declaration
String GetPersonDirectPhone()
Returns
Type | Description |
---|---|
String | Person Direct Phone. |
Examples
NSPhoneListItem thing;
String personDirectPhone = thing.GetPersonDirectPhone();
GetPersonEmail()
Introduced or updated in version: 7
Declaration
String GetPersonEmail()
Returns
Type | Description |
---|---|
String | The address itself. |
Examples
NSPhoneListItem thing;
String personEmail = thing.GetPersonEmail();
GetPersonFaxNumber()
Introduced or updated in version: 7
Declaration
String GetPersonFaxNumber()
Returns
Type | Description |
---|---|
String | Actual phone number as entered by the user. |
Examples
NSPhoneListItem thing;
String personFaxNumber = thing.GetPersonFaxNumber();
GetPersonPagerNumber()
Introduced or updated in version: 7
Declaration
String GetPersonPagerNumber()
Returns
Type | Description |
---|---|
String | Actual phone number as entered by the user. |
Examples
NSPhoneListItem thing;
String personPagerNumber = thing.GetPersonPagerNumber();
GetPersonPrivatePhone()
Introduced or updated in version: 7
Declaration
String GetPersonPrivatePhone()
Returns
Type | Description |
---|---|
String | Person Private Phone. |
Examples
NSPhoneListItem thing;
String personPrivatePhone = thing.GetPersonPrivatePhone();
GetTooltip()
Introduced or updated in version: 7
Declaration
String GetTooltip()
Returns
Type | Description |
---|---|
String |
Examples
NSPhoneListItem thing;
String tooltip = thing.GetTooltip();
GetUniqueId()
Introduced or updated in version: 7
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)
Introduced or updated in version: 7
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)
Introduced or updated in version: 7
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)
Introduced or updated in version: 7
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)
Introduced or updated in version: 7
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)
Introduced or updated in version: 7
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)
Introduced or updated in version: 7
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)
Introduced or updated in version: 7
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)
Introduced or updated in version: 7
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)
Introduced or updated in version: 7
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)
Introduced or updated in version: 7
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);