Shapes.AddConnector (PowerPoint)
Creates a connector. Returns a Shape object that represents the new connector. When a connector is added, it is not connected to anything. Use the BeginConnect and EndConnect methods to attach the beginning and end of a connector to other shapes in the document.
When you attach a connector to a shape, the size and position of the connector are automatically adjusted, if necessary. Therefore, if you are going to attach a connector to other shapes, the position and dimensions you specify when adding the connector are irrelevant.
AddConnector (Type, BeginX, BeginY, EndX, EndY)
Dim shpAddConnector As Shape
Set shpAddConnector = ActiveWindow.Selection.SlideRange(1).Shapes.AddConnector(Type:=msoConnectorTypeMixed, BeginX:=, BeginY:=, EndX:=, EndY:=)
Arguments
The following arguments are required:
Type (Office.MsoConnectorType) - The type of connector.
BeginX (Single) - The horizontal position, measured in points, of the connector's starting point relative to the left edge of the slide.
BeginY (Single) - The vertical position, measured in points, of the connector's starting point relative to the top edge of the slide.
EndX (Single) - The horizontal position, measured in points, of the connector's ending point relative to the left edge of the slide.
EndY (Single) - The vertical position, measured in points, of the connector's ending point relative to the top edge of the slide.