wpf-devexpress-dot-xpf-dot-diagram-dot-diagramcontrol-fb290536.md
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
[Browsable(false)]
public DiagramTool EllipseTool { get; set; }
<Browsable(False)>
Public Property EllipseTool As DiagramTool
| Type | Description |
|---|---|
| DiagramTool |
A DiagramTool object that represents the ellipse tool.
|
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.
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);
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