public final class TextBoxCustomization extends Customization
EditText customization parameters to the 3DS SDK.
Created by Ran Haveshush on 24/08/2018.
| Constructor and Description |
|---|
TextBoxCustomization() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getBorderColor() |
int |
getBorderWidth() |
int |
getCornerRadius() |
void |
setBorderColor(java.lang.String hexColorCode)
Sets the color for the border.
|
void |
setBorderWidth(int borderWidth)
Sets the width of the border between the selection items.
|
void |
setCornerRadius(int cornerRadius)
Sets the radius of the text box corners.
|
getTextColor, getTextFontName, getTextFontSize, parseHexColorCode, parseTypeface, setTextColor, setTextFontName, setTextFontSizepublic java.lang.String getBorderColor()
public void setBorderColor(java.lang.String hexColorCode)
throws InvalidInputException
hexColorCode - The color code in Hex format. For example "#999999".InvalidInputException - This exception shall be thrown if an input parameter is invalid.public int getBorderWidth()
public void setBorderWidth(int borderWidth)
throws InvalidInputException
borderWidth - The width of the border.InvalidInputException - This exception shall be thrown if an input parameter is invalid.public int getCornerRadius()
public void setCornerRadius(int cornerRadius)
throws InvalidInputException
cornerRadius - The radius for the text box corners.InvalidInputException - This exception shall be thrown if an input parameter is invalid.