Package com.ebasetech.xi.api.controls
Interface ImageStyleProperties
- All Superinterfaces:
 BorderStyleProperties
- All Known Subinterfaces:
 ImageControl
public interface ImageStyleProperties extends BorderStyleProperties
The 
ImageStyleProperties interface represents common image styling properties. 
 - Since:
 - V4.4
 
- 
Method Summary
Modifier and Type Method Description java.lang.StringgetImageHeight()Image height.java.lang.StringgetImageWidth()Image width.voidsetImageHeight(java.lang.String imageHeight)Sets the image height.voidsetImageWidth(java.lang.String imageWidth)Sets the image width.Methods inherited from interface com.ebasetech.xi.api.controls.BorderStyleProperties
getBorderColor, getBorderRadius, getBorderStyle, getBorderWidth, getBottomBorderWidth, getLeftBorderWidth, getRightBorderWidth, getTopBorderWidth, setBorderColor, setBorderRadius, setBorderStyle, setBorderWidth, setBottomBorderWidth, setLeftBorderWidth, setRightBorderWidth, setTopBorderWidth 
- 
Method Details
- 
getImageWidth
java.lang.String getImageWidth()Image width. SeesetImageWidth(String)for details of supported values when setting this property.- Since:
 - V4.4
 
 - 
setImageWidth
void setImageWidth(java.lang.String imageWidth)Sets the image width.Any valid value for the CSS width property can be specified e.g. 300px
- Since:
 - V4.4
 
 - 
getImageHeight
java.lang.String getImageHeight()Image height. SeesetImageHeight(String)for details of supported values when setting this property.- Since:
 - V4.4
 
 - 
setImageHeight
void setImageHeight(java.lang.String imageHeight)Sets the image height.Any valid value for the CSS height property can be specified e.g. 300px
- Since:
 - V4.4
 
 
 -