FreeformBuilder.AddNodes 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.
Inserts a new segment at the end of the freeform that's being created, and adds the nodes that define the segment.
public void AddNodes (Microsoft.Office.Core.MsoSegmentType SegmentType, Microsoft.Office.Core.MsoEditingType EditingType, float X1, float Y1, float X2 = 0, float Y2 = 0, float X3 = 0, float Y3 = 0);
abstract member AddNodes : Microsoft.Office.Core.MsoSegmentType * Microsoft.Office.Core.MsoEditingType * single * single * single * single * single * single -> unit
Public Sub AddNodes (SegmentType As MsoSegmentType, EditingType As MsoEditingType, X1 As Single, Y1 As Single, Optional X2 As Single = 0, Optional Y2 As Single = 0, Optional X3 As Single = 0, Optional Y3 As Single = 0)
Parameters
- SegmentType
- MsoSegmentType
Required MsoSegmentType. The type of segment to be added.
- EditingType
- MsoEditingType
Required MsoEditingType. The editing property of the vertex. If SegmentType
is msoSegmentLine, EditingType
must be msoEditingAuto.
- X1
- Single
Required Single. If the EditingType
of the new segment is msoEditingAuto, this argument specifies the horizontal distance (in points) from the upper-left corner of the document to the end point of the new segment. If the EditingType
of the new node is msoEditingCorner, this argument specifies the horizontal distance (in points) from the upper-left corner of the document to the first control point for the new segment.
- Y1
- Single
Required Single. If the EditingType
of the new segment is msoEditingAuto, this argument specifies the vertical distance (in points) from the upper-left corner of the document to the end point of the new segment. If the EditingType
of the new node is msoEditingCorner, this argument specifies the vertical distance (in points) from the upper-left corner of the document to the first control point for the new segment.
- X2
- Single
Optional Single. If the EditingType
of the new segment is msoEditingCorner, this argument specifies the horizontal distance (in points) from the upper-left corner of the document to the second control point for the new segment. If the EditingType
of the new segment is msoEditingAuto, don't specify a value for this argument.
- Y2
- Single
Optional Single. If the EditingType
of the new segment is msoEditingCorner, this argument specifies the vertical distance (in points) from the upper-left corner of the document to the second control point for the new segment. If the EditingType
of the new segment is msoEditingAuto, don't specify a value for this argument.
- X3
- Single
Optional Single. If the EditingType
of the new segment is msoEditingCorner, this argument specifies the horizontal distance (in points) from the upper-left corner of the document to the end point of the new segment. If the EditingType
of the new segment is msoEditingAuto, don't specify a value for this argument.
- Y3
- Single
Optional Single. If the EditingType
of the new segment is msoEditingCorner, this argument specifies the vertical distance (in points) from the upper-left corner of the document to the end point of the new segment. If the EditingType
of the new segment is msoEditingAuto, don't specify a value for this argument.
Remarks
You can use this method as many times as you want to add nodes to the freeform you're creating. When you finish adding nodes, use the ConvertToShape(Object) method to create the freeform you've just defined. To add nodes to a freeform after it's been created, use the Insert(Int32, MsoSegmentType, MsoEditingType, Single, Single, Single, Single, Single, Single) method of the ShapeNodes collection.