windowsforms-devexpress-dot-xtradiagram-dot-diagramconnector-ebaf2b92.md
Gets or sets the text displayed within the connector.
Namespace : DevExpress.XtraDiagram
Assembly : DevExpress.XtraDiagram.v25.2.dll
NuGet Package : DevExpress.Win.Diagram
[DiagramCategory(DiagramCategory.Common)]
public virtual string Content { get; set; }
<DiagramCategory(DiagramCategory.Common)>
Public Overridable Property Content As String
| Type | Description |
|---|---|
| String |
The text displayed within the connector.
|
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";
Imports DevExpress.Diagram.Core
DiagramConnector1.BeginArrow = ArrowDescriptions.FilledSquare
DiagramConnector1.EndArrow = ArrowDescriptions.FilledDoubleArrow
DiagramConnector1.Text = "Start"
See Also