Description
Event fired by McImage.BeginEndUpdateBlock when exiting a block if multiple frame's pixel data was changed.
Syntax
Private Sub object_MultipleFramesChanged(Image, FrameCount, FrameIndicesArray)
The MultipleFramesChanged Event syntax has these parts:
|
| object | A McImage object. | | Image | A McImage object. The McImage holding the frames changed.
| | FrameCount | A Long value. Count of frames that were modified
| | FrameIndicesArray | A Variant value. 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.
|
Remarks
This event will always be followed immediately by a single ImageChanged event. See the remarks with the ImageChanged event for more discusion.
|