Click or drag to resize

mcImportPropertiesFlags Enumeration

These flags are used to filter what image properties and attributes are imported in McImage.ImportProperties.

Namespace:  MediaCy.IQL.Engine
Assembly:  MediaCy.IQL.Engine (in MediaCy.IQL.Engine.dll) Version: 10.0.6912.0
Syntax
VB
Public Enumeration mcImportPropertiesFlags
Members
  Member nameValueDescription
mcipfImage4096Import standard McImage properties(and standard McFrame properties if the mcipfFrameProperties flag is set).
mcipfUserProperties8192Import McImage.Properties in namespaces not starting with _.(and McFrame.Properties if the mcipfFrameProperties flag is set).
mcipfLookupTables16384Import McImage.LookupTables.
mcipfPseudoColor32768Import McPseudoColor.
mcipfSpatialCalibration65536Import McImage.SpatialCalibration.
mcipfIntensityCalibration131072Import McImage.IntensityCalibration.
mcipfColorMap262144
mcipfApplyMonoColorToRGB524288If the source is monochrome and the destination is RGB or BGR,then apply any Tint or pseudocolor to the destinatin image before any other importing.
mcipfNoEvent8388608Suppress the BeforeImportProperties and AfterImportProperties events.
mcipfBWBestFit16777216Set a best fit display range when importing lookup tables.
mcipfBWTrueRange33554432
mcipfFrameProperties67108864Import properties of associated frames
mcipfAoiAppearance134217728Import Aoi appearance during a copy or convert.
mcipfAll201846784Import all properties andattributes, but do not suppress events, do not set display range & do not apply the luts.
mcipfAllExceptSpatial201781248Import all properties not spatially related. Useful if the image is resized.
mcipfAllExceptIntensity201682944
mcipfDefault67121152Import standard image and user properties only.Standard and user properties of associated frames will be imported as well. This default is appropriate if the image is related to the original image, but not closely related.
mcipfNone0Suppress importing any properties. Will still fire event unless mcipfNoEvent is also specified, in case someone handling events wants to copy some properties.
mcipfMask268431360All existing flags combined together.
Remarks
Note Note
These can be combined with mcImageCreateFlags in image creation methods.
See Also