public interface PaddingStyleProperties
 This is in contrast to margin which represents space outside an element's border, and is therefore displayed
 with the background color of it's parent element.
 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getAllPadding()Single  paddingsize value used for top, bottom, left and right padding. | 
| java.lang.String | getBottomPadding()Bottom  paddingsize value. | 
| java.lang.String | getLeftPadding()Left  paddingsize value. | 
| java.lang.String | getRightPadding()Right  paddingsize value. | 
| java.lang.String | getTopPadding()Top  paddingsize value. | 
| void | setAllPadding(java.lang.String allPadding)Sets the  paddingsize value used for top, bottom, left and right padding. | 
| void | setBottomPadding(java.lang.String bottomPadding)Sets the bottom  paddingsize value. | 
| void | setLeftPadding(java.lang.String leftPadding)Sets the left  paddingsize value. | 
| void | setRightPadding(java.lang.String rightPadding)Sets the right  paddingsize value. | 
| void | setTopPadding(java.lang.String topPadding)Sets the top  paddingsize value. | 
java.lang.String getAllPadding()
padding size value used for top, bottom, left and right padding. This property can be overridden by the more specific 
 topPadding, bottomPadding, leftPadding and rightPadding properties.setAllPadding(String)void setAllPadding(java.lang.String allPadding)
padding size value used for top, bottom, left and right padding. This property can be overridden by the more specific 
 topPadding, bottomPadding, leftPadding and rightPadding properties.
 Any size value that can be specified for the CSS padding property can be used when setting a value.
 Setting this property to null removes any existing value.
 Examples:
 controls.PANEL1.allPadding = "5px";
 controls.PANEL1.setAllPadding("2em");
 java.lang.String getTopPadding()
padding size value. This property overrides any value set with the allPadding property.setTopPadding(String)void setTopPadding(java.lang.String topPadding)
padding size value. This overrides any value set with the allPadding property.
 Any size value that can be specified for the CSS padding property can be used when setting a value.
 Setting this property to null removes any existing value.
 Examples:
 controls.PANEL1.topPadding = "5px";
 controls.PANEL1.setTopPadding("2em");
 java.lang.String getRightPadding()
padding size value. This property overrides any value set with the allPadding property.setRightPadding(String)void setRightPadding(java.lang.String rightPadding)
padding size value. This overrides any value set with the allPadding property.
 Any size value that can be specified for the CSS padding property can be used when setting a value.
 Setting this property to null removes any existing value.
 Examples:
 controls.PANEL1.rightPadding = "5px";
 controls.PANEL1.setRightPadding("2em");
 java.lang.String getBottomPadding()
padding size value. This property overrides any value set with the allPadding property.setBottomPadding(String)void setBottomPadding(java.lang.String bottomPadding)
padding size value. This overrides any value set with the allPadding property.
 Any size value that can be specified for the CSS padding property can be used when setting a value.
 Setting this property to null removes any existing value.
 Examples:
 controls.PANEL1.bottomPadding = "5px";
 controls.PANEL1.setBottomPadding("2em");
 java.lang.String getLeftPadding()
padding size value. This property overrides any value set with the allPadding property.setLeftPadding(String)void setLeftPadding(java.lang.String leftPadding)
padding size value. This overrides any value set with the allPadding property.
 Any size value that can be specified for the CSS padding property can be used when setting a value.
 Setting this property to null removes any existing value.
 Examples:
 controls.PANEL1.leftPadding = "5px";
 controls.PANEL1.setLeftPadding("2em");