Shapes.BuildFreeform (PowerPoint)

Builds a freeform object. Returns a FreeformBuilder object that represents the freeform as it is being built.

Use the AddNodes method to add segments to the freeform. After you have added at least one segment to the freeform, you can use the ConvertToShape method to convert the FreeformBuilder object into a Shape object that has the geometric description you've defined in the FreeformBuilder object.

BuildFreeform (EditingType, X1, Y1)


Dim fbrBuildFreeform As FreeformBuilder
Set fbrBuildFreeform = ActiveWindow.Selection.SlideRange(1).Shapes.BuildFreeform(EditingType:=msoEditingAuto, X1:=, Y1:=)

Arguments

The following arguments are required:

EditingType (Office.MsoEditingType) - The editing property of the first node.

X1 (Single) - The horizontal position, measured in points, of the first node in the freeform drawing relative to the left edge of the slide.

Y1 (Single) - The vertical position, measured in points, of the first node in the freeform drawing relative to the top edge of the slide.