public final class TextBoxCustomization extends Customization implements java.io.Serializable
| Constructor and Description |
|---|
TextBoxCustomization()
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getBorderColor()
Provides border color value.
|
int |
getBorderWidth()
Providers value for border width.
|
int |
getCornerRadius()
Provides value for the corner radius.
|
java.lang.String |
getDarkBorderColor()
Provides dark border color value.
|
void |
setBorderColor(java.lang.String borderColor) |
void |
setBorderWidth(int borderWidth) |
void |
setCornerRadius(int cornerRadius) |
void |
setDarkBorderColor(java.lang.String hexColorCode)
Sets the dark border color of the text box.
|
getDarkTextColor, getTextColor, getTextFontName, getTextFontSize, setDarkTextColor, setTextColor, setTextFontName, setTextFontSizepublic int getBorderWidth()
public void setBorderWidth(int borderWidth)
throws InvalidInputException
borderWidth - IntegerInvalidInputException - if invalid input is provided.public java.lang.String getBorderColor()
Stringpublic void setBorderColor(java.lang.String borderColor)
throws InvalidInputException
borderColor - String in hexadecimal format, example: #333333.InvalidInputException - if invalid input is provided.public int getCornerRadius()
public void setCornerRadius(int cornerRadius)
throws InvalidInputException
cornerRadius - Integer larger or equal to 0.InvalidInputException - if invalid input is provided.public java.lang.String getDarkBorderColor()
Stringpublic void setDarkBorderColor(java.lang.String hexColorCode)
throws InvalidInputException
hexColorCode - String in hexadecimal format, example: #333333.InvalidInputException - if invalid input is provided.