'Declaration Public Event ReadFormImage As ReadFormImageEventHandler
'Usage Dim instance As FormModel Dim handler As ReadFormImageEventHandler AddHandler instance.ReadFormImage, handler
public event ReadFormImageEventHandler ReadFormImage
public: __event ReadFormImageEventHandler* ReadFormImage
public: event ReadFormImageEventHandler^ ReadFormImage
Event Data
The event handler receives an argument of type ReadFormImageEventArgs containing data related to this event. The following ReadFormImageEventArgs properties provide information specific to this event.
Property | Description |
---|---|
FormImage | The FormImage returned to the issuer of the event. |
Type | The type of the form image to read. Reserved for future use. |
Remarks
This object uses this event to retrieve a copy of the form model image. The object will only retrieve the form model image when it needs to analyze it or compare it to another image.
Note: When this object raises this event and the handler returns a FormImage object as a result, this object assumes it is the only owner of that image and it will eventually call FormImage.Dispose to release the memory associated with the image.
See Also