How can I create a right angled connector

With Visio application, I can create a Rigth-Angle connector, without using a master shape.

How can I create a connector from the code with Aspose.Diagram, without using a master shape?

@zkormos
Thanks for your inquiry.

In Visio, even if you do not select or specifically use a master shape, when you add a connector shape, its master is predefined by Visio. When viewing document properties from the Start menu, we can see the master of the connector shape. In its shapesheet, we can also see that its master exists.
Unfortunately, we do not support creating a connector without using a master shape.

Please create a connector,then set the connectors type:

connector.SetConnectorsType(ConnectorsTypeValue.RightAngle);

Thanks.