Interface IContainer
- All Known Subinterfaces:
IBackgroundPicture,IShape
public interface IContainer
Represents a floating container in a sheet.
-
Method Summary
Modifier and TypeMethodDescriptiondoubleGets the height of the object.doubleGets the height (in pixels) of the object.doublegetLeft()Gets the distance from the left edge of the object to the left edge of column A (on a worksheet) or the left edge of the chart area (on a chart).doubleGets the distance (in pixels) from the left edge of the object to the left edge of column A (on a worksheet) or the left edge of the chart area (on a chart).doublegetTop()Gets the distance from the top edge of the topmost shape in the shape range to the top edge of the worksheet.doubleGets the distance (in pixels) from the top edge of the topmost shape in the shape range to the top edge of the worksheet.doublegetWidth()Gets the width of the object.doubleGets the width (in pixels) of the object.voidsetHeight(double value) Sets the height of the object.voidsetHeightInPixel(double value) Sets the height (in pixels) of the object.voidsetLeft(double value) Sets the distance from the left edge of the object to the left edge of column A (on a worksheet) or the left edge of the chart area (on a chart).voidsetLeftInPixel(double value) Sets the distance (in pixels) from the left edge of the object to the left edge of column A (on a worksheet) or the left edge of the chart area (on a chart).voidsetTop(double value) Sets the distance from the top edge of the topmost shape in the shape range to the top edge of the worksheet.voidsetTopInPixel(double value) Sets the distance (in pixels) from the top edge of the topmost shape in the shape range to the top edge of the worksheet.voidsetWidth(double value) Sets the width of the object.voidsetWidthInPixel(double value) Sets the width (in pixels) of the object.
-
Method Details
-
getTop
double getTop()Gets the distance from the top edge of the topmost shape in the shape range to the top edge of the worksheet. -
setTop
void setTop(double value) Sets the distance from the top edge of the topmost shape in the shape range to the top edge of the worksheet. -
getLeft
double getLeft()Gets the distance from the left edge of the object to the left edge of column A (on a worksheet) or the left edge of the chart area (on a chart). -
setLeft
void setLeft(double value) Sets the distance from the left edge of the object to the left edge of column A (on a worksheet) or the left edge of the chart area (on a chart). -
getWidth
double getWidth()Gets the width of the object. -
setWidth
void setWidth(double value) Sets the width of the object. -
getHeight
double getHeight()Gets the height of the object. -
setHeight
void setHeight(double value) Sets the height of the object. -
getTopInPixel
double getTopInPixel()Gets the distance (in pixels) from the top edge of the topmost shape in the shape range to the top edge of the worksheet. -
setTopInPixel
void setTopInPixel(double value) Sets the distance (in pixels) from the top edge of the topmost shape in the shape range to the top edge of the worksheet. -
getLeftInPixel
double getLeftInPixel()Gets the distance (in pixels) from the left edge of the object to the left edge of column A (on a worksheet) or the left edge of the chart area (on a chart). -
setLeftInPixel
void setLeftInPixel(double value) Sets the distance (in pixels) from the left edge of the object to the left edge of column A (on a worksheet) or the left edge of the chart area (on a chart). -
getWidthInPixel
double getWidthInPixel()Gets the width (in pixels) of the object. -
setWidthInPixel
void setWidthInPixel(double value) Sets the width (in pixels) of the object. -
getHeightInPixel
double getHeightInPixel()Gets the height (in pixels) of the object. -
setHeightInPixel
void setHeightInPixel(double value) Sets the height (in pixels) of the object.
-