Enum GeometryType
- Namespace
- Northwoods.Go
- Assembly
- Northwoods.GoDiagram.WinForms.dll
This enumeration specifies possible values for Type.
public enum GeometryType
Fields
Ellipse = 1
For drawing a rectangle. The rectangle goes from the point (StartX, StartY) to the point (EndX, EndY).
Line = 0
For drawing a simple straight line. The line goes from the point (StartX, StartY) to the point (EndX, EndY).
Path = 3
For drawing a complex path made of a list of PathFigures.
Rectangle = 2
For drawing an ellipse fitting within a rectangle. The ellipse fits within the rectangle that goes from the point (StartX, StartY) to the point (EndX, EndY).