windowsforms-devexpress-dot-xtradiagram-87d38868.md
Displays a shape on the diagram canvas.
Namespace : DevExpress.XtraDiagram
Assembly : DevExpress.XtraDiagram.v25.2.dll
NuGet Package : DevExpress.Win.Diagram
public class DiagramShape :
DiagramItem,
IDiagramShape,
IDiagramShapeBase,
IDiagramItem
Public Class DiagramShape
Inherits DiagramItem
Implements IDiagramShape,
IDiagramShapeBase,
IDiagramItem
The following members return DiagramShape objects:
Use the following properties to initialize a shape’s main settings.
You can link two shapes with a DiagramConnector, using the DiagramConnector.BeginItem, DiagramConnector.EndItem, DiagramConnector.BeginItemPointIndex and DiagramConnector.EndItemPointIndex properties.
For more information on shapes, see the Diagram Items topic.
The following code assigns the DevExpress.Diagram.Core.BasicFlowchartShapes.Decision shape kind to a shape and specifies the shape text and size.
diagramShape1.Shape = DevExpress.Diagram.Core.BasicFlowchartShapes.Decision;
diagramShape1.Content = "Initialized?";
diagramShape1.Size = new Size(150, 60);
Object MarshalByRefObject Component DiagramItem DiagramShape
See Also