//Example 2 //This example displays the items in the City field picklist. ContactFieldDescriptor cField; PickList pl; PickListItemCollection plic; PickListItem pli; cField = ActFwk.Contacts.GetContactFieldDescriptor("TBL_CONTACT.BUSINESS_CITY"); pl = ActFwk.PickLists.GetPickList(cField);
IsEditable is the only one I can access. I need to be able to retrieve a picklist (which i can do), then find out if it is multi select and then create a new pick list with the same attribute. I have found the IsMultiSelect attribute in the SDK documentation but I don't know how to access it.