ToolCreateMode Enumeration
Specifies the type of features created by the CreateTool.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public enum ToolCreateMode
Values
Value name | Value | Description |
---|---|---|
Point | 0 | Indicates that the user can create new point features, with a single mouse click. |
LineSegment | 1 | Indicates that the user can create new line features with two points, with two separate mouse clicks. |
LineSegmentDrag | 2 | Indicates that the user can create new line features with two points, by clicking and dragging the mouse. |
Line | 3 | Indicates that the user can create new line features. Each time the mouse is clicked, a new point is added to the line. The user completes the line with a double-click. |
Polygon | 4 | Indicates that the user can create new polygon features. Each time the mouse is clicked, a new point is added to the polygon. The user completes the polygon with a double-click. |
Custom | 5 | The CreateToolParameters instance attached to the CreateTool determines the user interaction and what type of feature is created. |
Ellipse | 6 | Allows for creating point features that are meant to be used with an EllipseOperator to generate the ellipse polygon. An instance of EllipseCreateToolParameters needs to be set on the CreateTool to make changes to how the ellipse is created. See Interacting with Ellipses for more information. |
Platforms
Windows, Linux, Android