Hi all,
Currently am working on an application that imports data from Outlook
to GMail.
For the business purpose, there are some fields that need to be shown
for each user.
Can somebody please tell me how to create extended properties / custom
fields for the same that get displayed in GMail UI?
I'm using the following code to create and attach extended properties:
newContact.ExtendedProperties.Add(new
ExtendedProperty("London",
"Location"));
newContact.ExtendedProperties.Add(new
ExtendedProperty("Sales",
"Department"));
newContact.ExtendedProperties.Add(new
ExtendedProperty("Full Time",
"Job Description"));
newContact.ExtendedProperties.Add(new
ExtendedProperty("Manager",
"Adam Glacius"));
newContact.ExtendedProperties.Add(new ExtendedProperty
("17/04/2006", "Event: Start Date"));
newContact.ExtendedProperties.Add(new
ExtendedProperty("http://
intranet.example.com/users/laura.s", "Website: Homepage"));
I don't know how to create user defined fields. They are documented
on
http://code.google.com/apis/contacts/docs/3.0/reference.html#gcUserDefinedField
Any help will be greatly appreciated as I really need to show the
custom fields / extended properties in UI.
-Sanket
--
You received this message because you are subscribed to the Google Groups
"Google Contacts API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-contacts-api?hl=en.