Get address info
•
Version: 9
Some tooltip text!
• 1 minute to read
• 1 minute to read
NSLocalizedField[][] getFormattedAddress()
Fetches the formatted address of the company.
Company c;
c.load(2);
NSLocalizedField[][] address;
address = c.getFormattedAddress();
for (Integer i = 0; i < address.length(); i++) {
for (Integer j = 0; j < address[i].length(); j++) {
print(address[i][j].GetLabel() + ":" + address[i][j].GetName() + ":" + address[i][j].GetValue() + ":" + address[i][j].GetTooltip() + ":" + address[i][j].GetValueLength().toString() + ":" + address[i][j].GetAddressType() + " ");
}
print("\n");
}
Get address using the contact agent
NSContactAgent contactAgent;
NSContactEntity contact = contactAgent.GetContactEntity(2);
NSAddress address = contact.GetAddress();
NSLocalizedField[][] fields = address.GetLocalizedAddress();
Then you can use a double for-loop to iterate and print fields (as we did in the previous example).