Back to Devexpress

DiagramControl.EllipseTool Property

wpf-devexpress-dot-xpf-dot-diagram-dot-diagramcontrol-fb290536.md

latest2.5 KB
Original Source

DiagramControl.EllipseTool Property

Specifies the tool that is used when the end-user selects the Ellipse tool in the Ribbon. This is a dependency property.

Namespace : DevExpress.Xpf.Diagram

Assembly : DevExpress.Xpf.Diagram.v25.2.dll

NuGet Package : DevExpress.Wpf.Diagram

Declaration

csharp
[Browsable(false)]
public DiagramTool EllipseTool { get; set; }
vb
<Browsable(False)>
Public Property EllipseTool As DiagramTool

Property Value

TypeDescription
DiagramTool

A DiagramTool object that represents the ellipse tool.

|

Remarks

The Ellipse tool creates an oval shape.

To provide the end-user with a custom Ellipse tool available from the Ribbon, create a FactoryItemTool object and assign it to the EllipseTool property. See the example below.

csharp
diagram.EllipseTool = new FactoryItemTool("CustomEllipse", () => "CustomEllipse",
    diagram => new DiagramShape() { Shape = BasicShapes.Ellipse, ConnectionPoints = new DiagramPointCollection(new PointCollection { new System.Windows.Point(0.5, 0.5) }) },
    BasicShapes.Ellipse.DefaultSize, BasicShapes.Ellipse.IsQuick);
vb
diagram.EllipseTool = New FactoryItemTool("CustomEllipse", Function() "CustomEllipse", Function(diagram) New DiagramShape() With {.Shape = BasicShapes.Ellipse,
    .ConnectionPoints = New DiagramPointCollection(New PointCollection From { New System.Windows.Point(0.5, 0.5) })},
    BasicShapes.Ellipse.DefaultSize, BasicShapes.Ellipse.IsQuick)

See Also

DiagramControl Class

DiagramControl Members

DevExpress.Xpf.Diagram Namespace