接口 IContainer
- 所有已知子接口:
IBackgroundPicture
,IShape
public interface IContainer
表示在表中的一个浮动容器。
-
方法概要
修饰符和类型方法说明double
获取对象的高度。double
获取对象的高度(以像素为单位)。double
getLeft()
获取对象左侧到工作表中的A列左侧或图表中的图表区域左侧的距离。double
获取对象左侧到工作表中的A列左侧(或在图表中到图表区域左侧)的距离(以像素为单位)。double
getTop()
获取从形状范围中最顶层形状的顶部边缘到工作表顶部边缘的距离。double
获取从形状范围中最顶层形状的顶部边缘到工作表顶部边缘的距离(以像素为单位)。double
getWidth()
获取对象的宽度。double
获取对象的宽度(以像素为单位)。void
setHeight
(double value) 设置对象的高度。void
setHeightInPixel
(double value) 设置对象的高度(以像素为单位)。void
setLeft
(double value) 设置对象左侧到工作表中的A列左侧或图表中的图表区域左侧的距离。void
setLeftInPixel
(double value) 设置对象左侧到工作表中的A列左侧或图表中的图表区域左侧的距离(以像素为单位)。void
setTop
(double value) 设置从形状范围内最顶部形状的顶部边缘到工作表顶部边缘的距离。void
setTopInPixel
(double value) 设置从形状范围中最顶层形状的顶部边缘到工作表顶部边缘的距离(以像素为单位)。void
setWidth
(double value) 设置对象的宽度。void
setWidthInPixel
(double value) 设置对象的宽度(以像素为单位)。
-
方法详细资料
-
getTop
double getTop()获取从形状范围中最顶层形状的顶部边缘到工作表顶部边缘的距离。 -
setTop
void setTop(double value) 设置从形状范围内最顶部形状的顶部边缘到工作表顶部边缘的距离。 -
getLeft
double getLeft()获取对象左侧到工作表中的A列左侧或图表中的图表区域左侧的距离。 -
setLeft
void setLeft(double value) 设置对象左侧到工作表中的A列左侧或图表中的图表区域左侧的距离。 -
getWidth
double getWidth()获取对象的宽度。 -
setWidth
void setWidth(double value) 设置对象的宽度。 -
getHeight
double getHeight()获取对象的高度。 -
setHeight
void setHeight(double value) 设置对象的高度。 -
getTopInPixel
double getTopInPixel()获取从形状范围中最顶层形状的顶部边缘到工作表顶部边缘的距离(以像素为单位)。 -
setTopInPixel
void setTopInPixel(double value) 设置从形状范围中最顶层形状的顶部边缘到工作表顶部边缘的距离(以像素为单位)。 -
getLeftInPixel
double getLeftInPixel()获取对象左侧到工作表中的A列左侧(或在图表中到图表区域左侧)的距离(以像素为单位)。 -
setLeftInPixel
void setLeftInPixel(double value) 设置对象左侧到工作表中的A列左侧或图表中的图表区域左侧的距离(以像素为单位)。 -
getWidthInPixel
double getWidthInPixel()获取对象的宽度(以像素为单位)。 -
setWidthInPixel
void setWidthInPixel(double value) 设置对象的宽度(以像素为单位)。 -
getHeightInPixel
double getHeightInPixel()获取对象的高度(以像素为单位)。 -
setHeightInPixel
void setHeightInPixel(double value) 设置对象的高度(以像素为单位)。
-