Excel.Interfaces.LineLoadOptions interface
Represents a line inside a worksheet. To get the corresponding Shape
object, use Line.shape
.
Remarks
Properties
$all | Specifying |
begin |
Represents the length of the arrowhead at the beginning of the specified line. |
begin |
Represents the style of the arrowhead at the beginning of the specified line. |
begin |
Represents the width of the arrowhead at the beginning of the specified line. |
begin |
Represents the shape to which the beginning of the specified line is attached. |
begin |
Represents the connection site to which the beginning of a connector is connected. Returns |
connector |
Represents the connector type for the line. |
end |
Represents the length of the arrowhead at the end of the specified line. |
end |
Represents the style of the arrowhead at the end of the specified line. |
end |
Represents the width of the arrowhead at the end of the specified line. |
end |
Represents the shape to which the end of the specified line is attached. |
end |
Represents the connection site to which the end of a connector is connected. Returns |
id | Specifies the shape identifier. |
is |
Specifies if the beginning of the specified line is connected to a shape. |
is |
Specifies if the end of the specified line is connected to a shape. |
shape | Returns the |
Property Details
$all
Specifying $all
for the load options loads all the scalar properties (such as Range.address
) but not the navigational properties (such as Range.format.fill.color
).
$all?: boolean;
Property Value
boolean
beginArrowheadLength
Represents the length of the arrowhead at the beginning of the specified line.
beginArrowheadLength?: boolean;
Property Value
boolean
Remarks
beginArrowheadStyle
Represents the style of the arrowhead at the beginning of the specified line.
beginArrowheadStyle?: boolean;
Property Value
boolean
Remarks
beginArrowheadWidth
Represents the width of the arrowhead at the beginning of the specified line.
beginArrowheadWidth?: boolean;
Property Value
boolean
Remarks
beginConnectedShape
Represents the shape to which the beginning of the specified line is attached.
beginConnectedShape?: Excel.Interfaces.ShapeLoadOptions;
Property Value
Remarks
beginConnectedSite
Represents the connection site to which the beginning of a connector is connected. Returns null
when the beginning of the line is not attached to any shape.
beginConnectedSite?: boolean;
Property Value
boolean
Remarks
connectorType
Represents the connector type for the line.
connectorType?: boolean;
Property Value
boolean
Remarks
endArrowheadLength
Represents the length of the arrowhead at the end of the specified line.
endArrowheadLength?: boolean;
Property Value
boolean
Remarks
endArrowheadStyle
Represents the style of the arrowhead at the end of the specified line.
endArrowheadStyle?: boolean;
Property Value
boolean
Remarks
endArrowheadWidth
Represents the width of the arrowhead at the end of the specified line.
endArrowheadWidth?: boolean;
Property Value
boolean
Remarks
endConnectedShape
Represents the shape to which the end of the specified line is attached.
endConnectedShape?: Excel.Interfaces.ShapeLoadOptions;
Property Value
Remarks
endConnectedSite
Represents the connection site to which the end of a connector is connected. Returns null
when the end of the line is not attached to any shape.
endConnectedSite?: boolean;
Property Value
boolean
Remarks
id
Specifies the shape identifier.
id?: boolean;
Property Value
boolean
Remarks
isBeginConnected
Specifies if the beginning of the specified line is connected to a shape.
isBeginConnected?: boolean;
Property Value
boolean
Remarks
isEndConnected
Specifies if the end of the specified line is connected to a shape.
isEndConnected?: boolean;
Property Value
boolean
Remarks
shape
Returns the Shape
object associated with the line.
shape?: Excel.Interfaces.ShapeLoadOptions;
Property Value
Remarks
Office Add-ins