Shapes.AddLine(Single, Single, Single, Single, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a line to a document. Returns a Shape object that represents the line and adds it to the AddCallout(MsoCalloutType, Single, Single, Single, Single, Object) collection.
public Microsoft.Office.Interop.Word.Shape AddLine (float BeginX, float BeginY, float EndX, float EndY, ref object Anchor);
abstract member AddLine : single * single * single * single * obj -> Microsoft.Office.Interop.Word.Shape
Public Function AddLine (BeginX As Single, BeginY As Single, EndX As Single, EndY As Single, Optional ByRef Anchor As Object) As Shape
Parameters
- BeginX
- Single
Required Single. The horizontal position, measured in points, of the line's starting point, relative to the anchor.
- BeginY
- Single
Required Single. The vertical position, measured in points, of the line's starting point, relative to the anchor.
- EndX
- Single
Required Single. The horizontal position, measured in points, of the line's end point, relative to the anchor.
- EndY
- Single
Required Single. The vertical position, measured in points, of the line's end point, relative to the anchor.
- Anchor
- Object
Optional Object. A Range object that represents the text to which the label is bound. If Anchor
is specified, the anchor is positioned at the beginning of the first paragraph in the anchoring range. If this argument is omitted, the anchoring range is selected automatically and the label is positioned relative to the top and left edges of the page.
Returns
Remarks
To create an arrow, use the Line property to format a line.