This is the delegate used to pass
ImGearTWAIN.BeforePage events on to an application event handler.
Syntax
Parameters
- sender
- Object which triggered the event.
- e
- Data about the event.
Example
// Event Registration
ImGearTWAIN imGearTWAIN = new ImGearTWAIN();
imGearTWAIN.BeforePage += new ImGearTWAINBeforePageEventHandler(imGearTWAIN_BeforePage);
// Event Declaration
void imGearTWAIN_BeforePage(object sender, ImGearTWAINBeforePageEventArgs e)
{
// Access event arguments via ImGearTWAINBeforePageEventArgs e
}
See Also