Skip to content

DevExpress-Examples/win-diagram-change-connection-points

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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