mcGraphOverlayEnumWhat Enumeration
|
|
Legal values for the EnumWhat argument of the McGraphOverlay.SetEnumFiltermethod.
Namespace:
MediaCy.IQL.Display.Overlays
Assembly:
MediaCy.IQL.Display.Overlays (in MediaCy.IQL.Display.Overlays.dll) Version: 10.0.6912.0
SyntaxPublic Enumeration mcGraphOverlayEnumWhat
Members
| Member name | Value | Description |
---|
| mcgewSelected | 1 | |
| mcgewAny | 2 | Return all non-template objects (selected or not).This is the default. |
| mcgewTemplate | 3 | |
| mcgewMasterOrLabel | 0 | Return either Master or Label objectsif both the mcgewMaster and mcgewLabel bits are clear (this is the default). |
| mcgewMaster | 16 | If this bit is set, only return master objects (no labels). |
| mcgewLabel | 32 | |
| mcgewVisibleOnly | 64 | If this bit is set, only return visible objects. To be visible,the McGraphObj.Style mcgsVisible bit must be set and the object's McGraphObj.Layer property
must be set to a layer for which McGraphOverlay.LayerVisible is True. |
| mcgewByLayer | 128 | If this bit is set, then the SetEnumFilter TemplateIDorLayerargument is a Layer number (0 through 9) from which objects are to be enumerated. |
| mcgewEnumWhatMask | 15 | Mask for the general type of objects toenumerate from; i.e., the mutually exclusive mcgewSelected, mcgewAny or
mcgewTemplate values. If this is zero, then mcgewAny is assumed. |
RemarksThe mcgewSelected, mcgewAny and mcgewTemplate values are mutually
exclusive. The other enumerations are flags that may be OR'ed into the
EnumWhat argument to modify that basic filter.
See Also