ExcelScript.Line interface
表示工作表中的一行。 若要获取相应的 Shape
对象,请使用 Line.shape
。
方法
方法详细信息
connectBeginShape(shape, connectionSite)
将指定连接线的始端附加到指定形状。
connectBeginShape(shape: Shape, connectionSite: number): void;
参数
- shape
- ExcelScript.Shape
要连接的形状。
- connectionSite
-
number
连接符开头所附加到的形状上的连接站点。 必须是介于 0 ((含) )和指定形状的连接站点计数 (排他) 之间的整数。
返回
void
connectEndShape(shape, connectionSite)
将指定连接线的末端附加到指定形状。
connectEndShape(shape: Shape, connectionSite: number): void;
参数
- shape
- ExcelScript.Shape
要连接的形状。
- connectionSite
-
number
连接符末端所附加到的形状上的连接站点。 必须是介于 0 ((含) )和指定形状的连接站点计数 (排他) 之间的整数。
返回
void
disconnectBeginShape()
使指定连接线的始端与形状脱离。
disconnectBeginShape(): void;
返回
void
disconnectEndShape()
使指定连接线的末端与形状脱离。
disconnectEndShape(): void;
返回
void
getBeginArrowheadLength()
getBeginArrowheadStyle()
getBeginArrowheadWidth()
getBeginConnectedShape()
getBeginConnectedSite()
表示连接线始端所连接的连接站点。
null
当线条的开头未附加到任何形状时返回 。
getBeginConnectedSite(): number;
返回
number
getConnectorType()
getEndArrowheadLength()
getEndArrowheadStyle()
getEndArrowheadWidth()
getEndConnectedShape()
getEndConnectedSite()
表示连接线末端所连接的连接站点。
null
当线条的末尾未附加到任何形状时返回 。
getEndConnectedSite(): number;
返回
number
getId()
指定形状标识符。
getId(): string;
返回
string
getIsBeginConnected()
指定指定线条的开头是否连接到形状。
getIsBeginConnected(): boolean;
返回
boolean
getIsEndConnected()
指定指定线条的末尾是否连接到形状。
getIsEndConnected(): boolean;
返回
boolean
getShape()
setBeginArrowheadLength(beginArrowheadLength)
表示指定线条始端的箭头长度。
setBeginArrowheadLength(beginArrowheadLength: ArrowheadLength): void;
参数
- beginArrowheadLength
- ExcelScript.ArrowheadLength
返回
void
setBeginArrowheadStyle(beginArrowheadStyle)
表示指定线条始端的箭头样式。
setBeginArrowheadStyle(beginArrowheadStyle: ArrowheadStyle): void;
参数
- beginArrowheadStyle
- ExcelScript.ArrowheadStyle
返回
void
setBeginArrowheadWidth(beginArrowheadWidth)
表示指定线条始端的箭头宽度。
setBeginArrowheadWidth(beginArrowheadWidth: ArrowheadWidth): void;
参数
- beginArrowheadWidth
- ExcelScript.ArrowheadWidth
返回
void
setConnectorType(connectorType)
表示线条的连接器类型。
setConnectorType(connectorType: ConnectorType): void;
参数
- connectorType
- ExcelScript.ConnectorType
返回
void
setEndArrowheadLength(endArrowheadLength)
表示指定线条末端的箭头长度。
setEndArrowheadLength(endArrowheadLength: ArrowheadLength): void;
参数
- endArrowheadLength
- ExcelScript.ArrowheadLength
返回
void
setEndArrowheadStyle(endArrowheadStyle)
表示指定线条末端的箭头样式。
setEndArrowheadStyle(endArrowheadStyle: ArrowheadStyle): void;
参数
- endArrowheadStyle
- ExcelScript.ArrowheadStyle
返回
void
setEndArrowheadWidth(endArrowheadWidth)
表示指定线条末端的箭头宽度。
setEndArrowheadWidth(endArrowheadWidth: ArrowheadWidth): void;
参数
- endArrowheadWidth
- ExcelScript.ArrowheadWidth
返回
void