The following example demonstrates getting a value from a multi-value property named "Companies".
var companies = Process.Properties.GetMultiValues("Companies");
foreach (var company in companies)
{
//
}
CODE
Remarks
This method will execute successfully on property regardless if it is backed by a multi-value field in the field catalog. If the target property is not a multi-value field, this method will return an empty list of strings.
JavaScript errors detected
Please note, these errors can depend on your browser setup.
If this problem persists, please contact our support.