TextBoxCustomization

The TextBoxCustomization class shall provide methods for the app to pass text box customization parameters to the 3DS2 SDK. The methods that are inherited from the Customization class can be used to set the properties of user-entered text in text boxes.

Inheritors

Functions

Link copied to clipboard
abstract fun getBorderColor(): String
The SDK implementer shall ensure that the border exists before this method is called.
Link copied to clipboard
abstract fun getBorderWidth(): Int
The border must exist before this method is called.
Link copied to clipboard
abstract fun getCornerRadius(): Int
Link copied to clipboard
abstract fun getHintTextColor(): String
Link copied to clipboard
abstract fun getTextColor(): String
Link copied to clipboard
abstract fun getTextFontName(): String
Link copied to clipboard
abstract fun getTextFontSize(): Int
Link copied to clipboard
abstract fun setBorderColor(@NonNull hexColorCode: String)
Link copied to clipboard
abstract fun setBorderWidth(borderWidth: Int)
Link copied to clipboard
abstract fun setCornerRadius(cornerRadius: Int)
Link copied to clipboard
abstract fun setHintTextColor(@NonNull hexColorCode: String)
Link copied to clipboard
abstract fun setTextColor(@NonNull hexColorCode: String)
Link copied to clipboard
abstract fun setTextFontName(@NonNull fontName: String)
Link copied to clipboard
abstract fun setTextFontSize(fontSize: Int)