EntrySelectionCustomization
@objc(Checkout3DSEntrySelectionCustomization)
public protocol EntrySelectionCustomization : Customization
Customization for the text field on the challenge screen, for the text one-time passcode challenge.
- Tag: EntrySelectionCustomization
-
The width of the border for the text field.
Declaration
Swift
@objc var borderWidth: CGFloat { get } -
The color of the border for the text field. To get the
CGColorversion of aUIColorobject, access thecgColorinstance property ofUIColor.Declaration
Swift
@objc var borderColor: CGColor { get } -
The radius for the corner of the text field.
Declaration
Swift
@objc var cornerRadius: CGFloat { get } -
The corner curve style for the border of the text field.
Declaration
Swift
@objc var cornerCurve: CALayerCornerCurve? { get } -
The border style of the text field.
Declaration
Swift
@objc var borderStyle: UITextField.BorderStyle { get } -
The background color of the text box.
Declaration
Swift
@objc var backgroundColor: UIColor { get } -
The color of the selection element when it is not selected. For example, the radio buttons for the ‘Single Select’ challenge flow.
Declaration
Swift
@objc var unselectedColor: UIColor { get } -
The color of the selection element. For example, the radio buttons for the ‘Single Select’ challenge flow.
Declaration
Swift
@objc var selectedColor: UIColor { get }
EntrySelectionCustomization Protocol Reference