Skip to main content

DiagramConnector.Text Property

OBSOLETE

Use the Content property instead.

Gets or sets the text displayed within the connector.

Namespace: DevExpress.XtraDiagram

Assembly: DevExpress.XtraDiagram.v23.2.dll

NuGet Package: DevExpress.Win.Diagram

Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("Use the Content property instead.")]
public string Text { get; set; }

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.

ArrowStyleExample.png

using DevExpress.Diagram.Core;

diagramConnector1.BeginArrow = ArrowDescriptions.FilledSquare;
diagramConnector1.EndArrow = ArrowDescriptions.FilledDoubleArrow;
diagramConnector1.Content = "Start";
See Also