Custom Nodes Square9.CustomNode SDK Methods Current: SetMultiValueProperty Method SetMultiValueProperty Method Sets the value of a multi-value process property. public void SetMultiValueProperty(string name, IEnumerable<string> values); CODE Classes: Properties Parametersstring nameName of the property to set. IEnumerable<string> valueValue(s) to set to the property. ExampleThe following example demonstrates setting the values of a multi value property. var values = new List<string>(); values.Add("one"); values.Add("two"); values.Add("three"); Process.Properties.SetMultiValueProperty("MV", values); CODE RemarksIf no property can be found by the parameter "name", an InvalidOperationException will be thrown.This method will execute successfully on property regardless if it is backed by a multi value field in the field catalog. ×