Click or drag to resize

mcWhatAction Enumeration

Legal bit values for the IMcDisplay.IsActionAvailable argument WhatAction.

Namespace:  MediaCy.IQL.Display.Viewer
Assembly:  MediaCy.IQL.Display.Viewer (in MediaCy.IQL.Display.Viewer.dll) Version: 10.0.6912.0
Syntax
VB
Public Enumeration mcWhatAction
Members
  Member nameValueDescription
mcwaNone0nothing is tested for.
mcwaMcImageAoiToPaste1is an McImage AOI available for pasting into the ImageToDisplay?
mcwaMcImageDisplayAreaToPaste2is an McImage Display Area available for pasting into the ImageToDisplay?
mcwaMcImageToPaste3is any clipboard image data, either AOI, Display Area, bitmap or enhanced metafile, available for pasting into the ImageToDisplay?
mcwaMcImageAoiToPasteNew4is an McImage AOI available for pasting to a new image?
mcwaMcImageDisplayAreaToPasteNew5is an McImage Display Area available for pasting to a new image?
mcwaMcImageToPasteNew6is any clipboard image data, either AOI, Display Area, bitmap or enhanced metafile, available for pasting to a new image?
mcwaCanPanScroll7is the Zoomed Image size greater than the Displayed Size or is Pan or Scroll non-zero?
mcwaCanZoomIn8is the Magnification less than its maximum allowed value?
mcwaCanZoomOut9is the Magnification greater than its minimum allowed value?
mcwaHasOwningView10is this McDisplay instance aMcView.Display property? If so, the OwningView property will be non-NULL.
mcwaIsLiveOverlayMode11Live overlay mode is no longersupported. This argument value is legal, but will always result in a False return value.
mcwaCachedNativeDib12is there a cached nativeDIB (Device Independent Bitmap). This is only possible at Magnifications of 1 and only with certain ImageToDisplay.Type's. If a native Dib is cached, then display is substantially faster.
mcwaIsAutoScrollModeLocked13is the owning McView.AutoScrollMethodin its locked state.
mcwaCanEditCopyBitmap14is display area small enough to allowa bitmap representation of it to be placed on the clipboard. The bitmap representations are those called for by the mcWhatCF_Types.mcwcftCF_ENHMETAFILE, mcwcftCF_DIB, mcwcftCF_BITMAP and mcwcftCF_METAFILEPICT requested clipboard formats passed in the EditCopy or EditCut CF_Types parameter. Any requested clipboard format that cannot be honored will be ignored by EditCopy or EditCut.
mcwaCanEditCopyAoi15is the Aoi small enough to allow a copy ofeach frame to be placed on the clipboard. The Aoi copy is that called for by the mcWhatCF_Types.mcwcftMcImageAoi requested clipboard format passed in the EditCopy or EditCut CF_Types parameter. The frame limit tested is the one exposed by the ResourceManager.MiscellaneousResources( mcMiscellaneousResources.mcmrVeryLargeImage) property. Any requested clipboard format that cannot be honored will be ignored by EditCopy or EditCut.
mcwaCanEditCopyDisplayArea16is the displayed portion of theImageToDisplay small enough to allow each frame to be placed on the clipboard. The copy is that called for by the mcWhatCF_Types.mcwcftMcImageDisplayArea requested clipboard format passed in the EditCopy or EditCut CF_Types parameter. The frame limit tested is the one exposed by the ResourceManager.MiscellaneousResources( mcMiscellaneousResources.mcmrVeryLargeImage) property. Any requested clipboard format that cannot be honored will be ignored by EditCopy or EditCut.
mcwaWarnEditCopyAoi17are the Aoi and ActiveFrameRange largeenough so that the user should be warned when attempting to place a copy of it on the clipboard. The copy is that called for by the mcWhatCF_Types.mcwcftMcImageAoi requested clipboard format passed in the EditCopy or EditCut CF_Types parameter. The limit tested is the one exposed by the ResourceManager.MiscellaneousResources( mcMiscellaneousResources.mcmrMaxEditCopy) property. The Setting("McViewer","Paste","AllowWarnEditCopy") determines if this warning is given (True, the defaut) or if image Aoi's that would exceed the warning limit should just be prohibitted. If the warning is prohibitted, then nothing will be placed on the clipboard for the EditCopy or EditCut. See also mcWhatAction.mcwaCanEditCopyAoi.
mcwaWarnEditCopyDisplayArea18are the displayed portion of theImageToDisplay and ActiveFrameRange large enough so that the user should be warned when attempting to place a copy of it on the clipboard. The copy is that called for by the mcWhatCF_Types.mcwcftMcImageDisplayArea requested clipboard format passed in the EditCopy or EditCut CF_Types parameter. The limit tested is the one exposed by the ResourceManager.MiscellaneousResources( mcMiscellaneousResources.mcmrMaxEditCopy) property.a The Setting("McViewer","Paste","AllowWarnEditCopy") determines if this warning is given (True, the defaut) or if a displayed portion of the ImageToDisplay that would exceed the warning limit should just be prohibitted. If the warning is prohibitted, then nothing will be placed on the clipboard for the EditCopy or EditCut. See also mcWhatAction.mcwaCanEditCopyDisplayArea.
See Also