MilStd2525CCreateToolParameters Class
Provides information that a CreateTool or CreateTouchTool uses to enrich the interaction when tactical symbols are created.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CETactical assembly)
Syntax
public class MilStd2525CCreateToolParameters : CreateToolParameters
Remarks
The MilStd2525CCreateToolParameters is used to customize the behavior of a CreateTool or CreateTouchTool for a particular symbol in the MIL-STD-2525C standard.
Example
// Configure a CreateTool on a MapControl to create a MIL-STD-2525C Bypass corridor
public static void CreateMilStd2525CSymbolWithTool(
MapControl mapControl, MemoryDataSet memoryDataSet)
{
// Initialize a create parameters class for the Appendix B "Bypass" corridor area
MilStd2525CCreateToolParameters createParams =
new MilStd2525CCreateToolParameters("G*T*Y-----****X");
// Create the tool and activate it in a MapControl
CreateTool createTool = new CreateTool(memoryDataSet,
new AttributeSet(), createParams);
mapControl.Tool = createTool;
}
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
CreateToolParameters
MilStd2525CCreateToolParameters
Platforms
Windows, Linux, Android
MilStd2525CCreateToolParameters Members
The MilStd2525CCreateToolParameters type has the following members.
Constructors
Name | Description |
---|---|
MilStd2525CCreateToolParameters | Initializes a new instance of the MilStd2525CCreateToolParameters. |
Properties
Name | Description |
---|---|
Group | Gets or sets the Group to add the new Feature to. |
IsDisposed | Gets a value that tells whether the current MilStd2525CCreateToolParameters has been disposed. Inherited from EngineObject |
NativeHandle | Gets the native Carmenta Engine kernel object the current MilStd2525CCreateToolParameters represents. Inherited from EngineObject |
Sidc | Gets the SIDC of the MIL-STD-2525C symbol that the tool is trying to create. |
Methods
Name | Description |
---|---|
Clone | Creates a copy of an object. Inherited from EngineObject |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |