DIMcImageEvents_MultipleFramesChangedEventHandler Delegate
|
|
Event fired by McImage.BeginEndUpdateBlock when exiting
a block if multiple frame's pixel data was changed.
Namespace:
MediaCy.IQL.Engine
Assembly:
MediaCy.IQL.Engine (in MediaCy.IQL.Engine.dll) Version: 10.0.6912.0
SyntaxPublic Delegate Sub DIMcImageEvents_MultipleFramesChangedEventHandler (
Image As McImage,
FrameCount As Integer,
FrameIndicesArray As Object
)
Parameters
- Image
- Type: MediaCy.IQL.EngineMcImage
The McImage holding the frames changed. - FrameCount
- Type: SystemInt32
Count of frames that were modified - FrameIndicesArray
- Type: SystemObject
An array of 2 or more Long values holding the frame
indices (see McFrame.FrameIndex) of the frames that were changed. You
may access the McFrame associated with any index with the McImage.Frame(index)
property.
RemarksThis event will always be followed immediately by a single
ImageChanged event. See the remarks with the ImageChanged event for more
discusion.
See Also