fiogf49gjkf0d For Lookups you can use:
var lookup = SlxApplication.BasicFunctions.LookupItemWithConditionByID("Account:Account", false, null, null, null, null); string selectedId = lookup.ID;
For picklists use:
var selectedItems = slx.PickLists["Title"].Select(PickListColumnsEnum.plcItems, null, 200, 200, 300, 300); if (selectedItems.Count > 0) string selectedValue1 = selectedItems[0].ToString();
You can of course play with the values for location and size. |