DiagramConnector.Content Property
Gets or sets the text displayed within the connector.
Namespace: DevExpress.XtraDiagram
Assembly: DevExpress.XtraDiagram.v24.1.dll
NuGet Package: DevExpress.Win.Diagram
Declaration
Property Value
Type | Description |
---|---|
String | The text displayed within the connector. |
Example
The following example shows how to specify arrow styles and text for a diagram connector.
using DevExpress.Diagram.Core;
diagramConnector1.BeginArrow = ArrowDescriptions.FilledSquare;
diagramConnector1.EndArrow = ArrowDescriptions.FilledDoubleArrow;
diagramConnector1.Content = "Start";
See Also