IAdmParameterText

The IAdmParameterText interface represents a text parameter.

Inheritance: IAdmParameter

Properties

  • Property

  • Description

  • Numeric

  • Gets or sets a value indicating whether only digits are allowed for the parameter.

  • MinNumericValue

  • Gets or sets the minimum integer value allowed for the parameter.

  • MaxNumericValue

  • Gets or sets the maximum integer value allowed for the parameter.

  • LimitText

  • Gets or sets a value indicating the maximum number of characters allowed for the parameter.

  • AllowEmptyValue

  • Gets or sets a value indicating whether the parameter can be empty.

Details

Numeric

Gets or sets a value indicating whether only digits are allowed for the parameter.

  • Type:
  • bool
  • Access:
  • Read/Write

MinNumericValue

Gets or sets the minimum integer value allowed for the parameter.

  • Type:
  • int
  • Access:
  • Read/Write

Remarks

  • This property is ignored if the Numeric property is set to false.
  • Set this property to -2,147,483,648 (smallest possible 32-bit integer value) for the parameter to have no minimum restriction.

MaxNumericValue

Gets or sets the maximum integer value allowed for the parameter.

  • Type:
  • int
  • Access:
  • Read/Write

Remarks

  • This property is ignored if the Numeric property is set to false.
  • Set this property to 2,147,483,647 (largest possible 32-bit integer value) for the parameter to have no maximum restriction.

LimitText

Gets or sets a value indicating the maximum number of characters allowed for the parameter.

  • Type:
  • int
  • Access:
  • Read/Write

Remarks

Set the property to 0 for the parameter to have no length restrictions.


AllowEmptyValue

Gets or sets a value indicating whether the parameter can be empty.

  • Type:
  • bool
  • Access:
  • Read/Write

Requirements

Minimum required version: 2018.1

See also