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.

Further documentation.

Since:
V4.4

Method Summary
 java.lang.String getImageHeight()
          Image height.
 java.lang.String getImageWidth()
          Image width.
 void setImageHeight(java.lang.String imageHeight)
          Sets the image height.
 void setImageWidth(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 Detail

getImageWidth

java.lang.String getImageWidth()
Image width. See setImageWidth(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. See setImageHeight(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