mcThresholdCommandFlags Enumeration
|
|
Predefined flags and command codes for the McThreshold.CommandFlags property.
Namespace:
MediaCy.IQL.Features
Assembly:
MediaCy.IQL.Features (in MediaCy.IQL.Features.dll) Version: 10.0.6912.0
SyntaxPublic Enumeration mcThresholdCommandFlags
Members
| Member name | Value | Description |
---|
| mctcfNoFlags | 0 | No flags. |
| mctcfAllFlags | -1 | All flags. |
| mctcfDataGet | -556883968 | When assigned, gets the dataelement identified by the lowest 12 bits of the command into CommandData.
CommandData is cleared once it is next accessed. |
| mctcfDataSet | -556879872 | When assigned, sets the dataelement identified by the lowest 12 bits of the command from the current
CommandData. CommandData is cleared after its value is stored. |
| mctcfDataClear | -556875776 | When assigned, clears the dataelement identified by the lowest 12 bits of the command. |
| mctcfDataClearAll | -556871680 | When assigned, clears all storeddata elements. |
| mctcfDataList | -556867584 | When assigned, sets CommandDatato an array of integers identifying the storage elements than have been
assigned to and not yet cleared. |
| mctcfDataElementMask | 4095 | A mask for the data element portionof the mctcfDataXxxx action commands. |
| mctcfSaveAsBytes | -556859392 | When assigned, sets CommandDatato an array of bytes holding a full representation of CommandFlags, CommandData
and all data elements. CommandData and data elements holding Object
references or Structures (Records) cannot be saved as bytes. Such elements
will not be saved, and a subsequent assignment of the mctcfSaveAsBytesSucceeded
will set CommandData to False. |
| mctcfSaveAsBytesSucceeded | -556859391 | When assigned, setsCommandData to True if the last mctcfSaveAsBytes succeeded in saving
CommandData and all data elements. If the last mctcfSaveAsBytes
encountered a non-savable element, CommandData will be set False. |
| mctcfLoadFromBytes | -556859390 | When assigned, assumesCommandData is an array of bytes previously created by a
mctcfSaveAsBytes assignment. CommandFlags, CommandData and all data
elements are restored from this array. |
See Also