EMPrimitiveInputFormat

Objective-C

enum EMPrimitiveInputFormat : int {}

Swift

enum EMPrimitiveInputFormat : Int32, @unchecked Sendable

Represents the allowed input format of the data.

  • A decimal number with two fraction digits such as “123.45”. Either ‘.’ or ‘,’ can be used a decimal separator.

    Declaration

    Objective-C

    EMPrimitiveInputFormatDecimalTwoFractionDigits

    Swift

    case decimalTwoFractionDigits = 0
  • Ascii digit between ‘0’ to ‘9’

    Declaration

    Objective-C

    EMPrimitiveInputFormatDigit

    Swift

    case digit = 1
  • The allowed input is fixed to a set of predefined values

    Declaration

    Objective-C

    EMPrimitiveInputFormatFixed

    Swift

    case fixed = 2