Skip to main content
.NET 6.0+

ParametrizedAction.ValueType Property

Specifies the type of values that must be entered in a Parametrized Action’s editor.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

[DefaultValue(typeof(string))]
[TypeConverter(typeof(ActionParameterValueTypeConverter))]
public Type ValueType { get; set; }

Property Value

Type Default Description
Type string

A Type value that indicates the type of the current Parametrized Action’s ParametrizedAction.Value.

Remarks

A Parametrized Action is displayed via an editor whose type depends on the type of values that will be entered in it. Use this property to specify the values type. The following types are supported:

  • string
  • int
  • float
  • double
  • DateTime

Built-in Action Containers will display an appropriate editor for each of them.

See Also