FormFix v6.0 for .NET - Updated
ReadFormImage Event



Accusoft.FormFixSdk Namespace > FormModel Class : ReadFormImage Event
An event for reading a form model image.
Syntax
'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
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.

PropertyDescription
The FormImage returned to the issuer of the event.  
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