Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 2.88 KB

File metadata and controls

40 lines (27 loc) · 2.88 KB

DiagramControl for WinForms - Change a Shape's Connection Points at Runtime

This example modifies a shape's ConnectionPoints collection at runtime. To illustrate this behavior, we added a trackbar that changes the number and position of connection points.

image

The ConnectionPoints collection does not have public members that allow you to add or remove items. To accomplish this task, create a new point collection and assign it to the ConnectionPoints property:

PointFloat[] points = new PointFloat[...];
shape.ConnectionPoints = new DevExpress.Diagram.Core.DiagramPointCollection(points);

Files to Review

Documentation

More Examples

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)