MilStd2525BCreateToolParameters 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 MilStd2525BCreateToolParameters : CreateToolParameters
Remarks
The MilStd2525BCreateToolParameters is used to customize the behavior of a CreateTool or CreateTouchTool for a particular symbol in the MIL-STD-2525B standard. This is especially necessary when a create tool is used to create one of the more complex tactical symbols in MIL-STD-2525B that cannot be defined by a simple geometry.
You can use the CreateTouchTool.ControlPoints property to limit the number of parts (circles, sectors etc.) in tactical symbols when you create them using a CreateTouchTool.
Example
// Configure a CreateTool on a MapControl to create a MIL-STD-2525B Bypass corridor
public static void CreateMilStd2525BSymbolWithTool(
MapControl mapControl, MemoryDataSet memoryDataSet)
{
// Initialize a create parameters class for the Appendix B "Bypass" corridor area
MilStd2525BCreateToolParameters createParams =
new MilStd2525BCreateToolParameters("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
MilStd2525BCreateToolParameters
Platforms
Windows, Linux, Android
MilStd2525BCreateToolParameters Members
The MilStd2525BCreateToolParameters type has the following members.
Constructors
Name | Description |
---|---|
MilStd2525BCreateToolParameters | Initializes a new instance of the MilStd2525BCreateToolParameters. |
Properties
Name | Description |
---|---|
Group | Gets or sets the Group to add the new Feature to. |
IsDisposed | Gets a value that tells whether the current MilStd2525BCreateToolParameters has been disposed. Inherited from EngineObject |
NativeHandle | Gets the native Carmenta Engine kernel object the current MilStd2525BCreateToolParameters represents. Inherited from EngineObject |
Sidc | Gets the SIDC of the MIL-STD-2525B 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 |