Enum ParameterType
OptimaJet.Workflow.Core.Model.ParameterType
Specifies how Workflow Designer renders a field described by a CodeActionParameterDefinition.
Namespace: OptimaJet.Workflow.Core.Model
public enum ParameterTypeFields
Text = 0 #Displays a single-line text input.
Number = 1 #Displays a numeric input.
Dropdown = 3 #Displays a single-selection list populated from CodeActionParameterDefinition.DropdownValues.
MultiSelect = 4 #Displays a multiple-selection list populated from CodeActionParameterDefinition.DropdownValues.
DateTime = 5 #Displays an input for a combined date and time value.
Date = 6 #Displays an input for a date without a time component.
Time = 7 #Displays an input for a time without a date component.
Json = 8 #Displays an editor for a JSON value.
TextArea = 9 #Displays a multiline text input.
Error = 10 #Displays an error alert instead of an input control.
Custom = 11 #Displays the custom parameter control identified by CodeActionParameterDefinition.CustomName.