Click or drag to resize

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
Syntax
VB
Public Enumeration McPickPointsToolCommandFlags
Members
  Member nameValueDescription
mcppcfToolBestFitLine1Option flag: activates best fit line tool
mcppcfToolBestFitCircle2Option flag: activates best fit circle tool
mcppcfToolBestFitArc4Option flag: activates best fit arc tool
mcppcfToolPPLine8Option flag: activates point-to-point line tool
mcppcfToolAngle16Option flag: activates angle tool
mcppcfToolPitch32Option flag: activates pitch with line tool
mcppcfSetResultMcPoints64Action 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.
mcppcfGetResultMcPoints128Action 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.
mcppcfSetSpotSize256Action 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.
mcppcfGetSpotSize512Action 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.
mcppcfSetResultMcLines1024Action flag: TODO
mcppcfGetResultMcLines2048Action flag: TODO
mcppcfSetResultMcRegions4096Action flag: TODO
mcppcfGetResultMcRegions8192Action flag: TODO
mcppcfAbortPicking16384Action 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.
mcppcfEndPicking32768Action 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.
mcppcfToolLLAngle65536Option flag: activates angle between lines tool
mcppcfSetResultData131072Option flag: sets data in
mcppcfGetResultData262144Option flag: retrieves data from the tool
mcppcfSetMaxNPoints524288Action flag: sets the maximum number of points for best-fit feature. Use -1 to set no limit
See Also