DIMcImageEvents_NewEventHandler Delegate

Event fired after an image has been created by McImages.Add

Namespace:  MediaCy.IQL.Engine
Assembly:  MediaCy.IQL.Engine (in MediaCy.IQL.Engine.dll) Version: 10.0.6912.0
Syntax
VB
Public Delegate Sub DIMcImageEvents_NewEventHandler ( 
	Image As McImage,
	CreationFlags As Integer
)

Parameters

Image
Type: MediaCy.IQL.EngineMcImage
The McImage just created.
CreationFlags
Type: SystemInt32
See mcImageCreateFlags for the list of supported flags.
Remarks
This event is NOT fired when an image is opened from file. In that case the Open event is fired instead. At the time that this event is fired on the McImage, it will not yet be visible or part of the images collection. When the event is fired on the Images collection, the image will have been added to the collection, but it will not yet be visible.
Note Note
In the case of the operators that create new images, the value of CreationFlags may not match exactly the value passed to the operator since the operator may change it for efficiency purpose.
See Also