McPickPointsToolCommandFlags Enumeration
|
|
Legal values for the McPickPointsTool's
IMcGraphToolServer.CommandFlags property.
Namespace:
MediaCy.IQL.Display.Overlays
Assembly:
MediaCy.IQL.Display.Overlays (in MediaCy.IQL.Display.Overlays.dll) Version: 10.0.6912.0
SyntaxPublic Enumeration McPickPointsToolCommandFlags
Members
| Member name | Value | Description |
---|
| mcppcfToolBestFitLine | 1 | Option flag: activates best fit line tool |
| mcppcfToolBestFitCircle | 2 | Option flag: activates best fit circle tool |
| mcppcfToolBestFitArc | 4 | Option flag: activates best fit arc tool |
| mcppcfToolPPLine | 8 | Option flag: activates point-to-point line tool |
| mcppcfToolAngle | 16 | Option flag: activates angle tool |
| mcppcfToolPitch | 32 | Option flag: activates pitch with line tool |
| mcppcfSetResultMcPoints | 64 | Action flag: CommandData is castto an McRegions instance and used as the McRegions into which the picked
spots will be appended as new sub-region features. See the
mcpscfGetResultMcRegions flag for how the default is determined.. Once the
CommandData is accessed, it is cleared. |
| mcppcfGetResultMcPoints | 128 | Action flag: Get, intoCommandData, the McRegions instance that is used as the McRegions into which
the results will be appended as new sub-region features. If this McRegions
has not been set via the mcpscfSetResultMcRegions flag, then by default it
is the ancestor McRegions, if any, of the McGraphOverlay on which the
McPickPointsTool has been invoked (via a call to McGraphOverlay.SelectTool).
If there is no ancestor McRegions, then the Aoi of the ancestor image of the
McGraphOverlay is used as the default. Once the CommandData is gotten to
retrieve the result, it is cleared. |
| mcppcfSetSpotSize | 256 | Action flag: CommandData is castto a double value and used as the size of the circle or square used
for a picked spot. A lower limit of 1 pixel is silently enforced. |
| mcppcfGetSpotSize | 512 | Action flag: Get, intoCommandData, a double value that is the current size of the circle or square
used for a picked spot. Unless changed via the mcpscfSetSpotSize flag or
user +/- keypresses, the spot size is 10 pixels. The user may increase the
spot size by 25% by pressing the plus (+) key and decrease it by 25% by
pressing the minus (-) key. |
| mcppcfSetResultMcLines | 1024 | Action flag: TODO |
| mcppcfGetResultMcLines | 2048 | Action flag: TODO |
| mcppcfSetResultMcRegions | 4096 | Action flag: TODO |
| mcppcfGetResultMcRegions | 8192 | Action flag: TODO |
| mcppcfAbortPicking | 16384 | Action flag and information flag:Abort point placing and shut down the McPickPointsTool as if the Escape key
were pressed. At the time that the ToolDeselected notify is sent, this bit
will be on in the CommandFlags property. This flag must be assigned alone. |
| mcppcfEndPicking | 32768 | Action flag and information flag:End point placing and shut down the McPickPointsTool as if the Enter key
were pressed (or left mouse button double-clicked). At the time that the
ToolDeselected notify is sent, this bit will be on in the CommandFlags
property. This flag must be assigned alone. |
| mcppcfToolLLAngle | 65536 | Option flag: activates angle between lines tool |
| mcppcfSetResultData | 131072 | Option flag: sets data in |
| mcppcfGetResultData | 262144 | Option flag: retrieves data from the tool |
| mcppcfSetMaxNPoints | 524288 | Action flag: sets the maximum number of points for best-fit feature. Use -1 to set no limit |
See Also