InputType

@objc(SBDFormInputType)
public enum InputType : Int
extension FormField.InputType: RawRepresentable

The enum type to represent the input type of a feild key. NOTE: The default value is ‘text’.

Since

4.14.1
  • Undocumented

    Declaration

    Swift

    case text
  • Undocumented

    Declaration

    Swift

    case phone
  • Undocumented

    Declaration

    Swift

    case email
  • Undocumented

    Declaration

    Swift

    case password
  • Keyboard type

    Declaration

    Swift

    public var keyboardType: UIKeyboardType { get }
  • Indicates if the text is captcha for the keyboard.

    Declaration

    Swift

    public var isSecureText: Bool { get }
  • Declaration

    Swift

    public typealias RawValue = String
  • Declaration

    Swift

    public var rawValue: String { get }
  • Declaration

    Swift

    public init?(rawValue: String)