This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List<object> Values = new List<Object>(); | |
Values.Add("value here"); | |
RecordField rf = record.GetRecordField("FieldAlias"); // Use a Setting to define during workflow creation | |
rf.Values.Clear(); | |
rf.Values = Values; | |
FormStorage fs = new FormStorage(); | |
Form f = fs.GetForm(record.Form); | |
RecordStorage rs = new RecordStorage(); |
NewerOlder