|
GPS ToolKit.NET
FileComplete Event
Triggered when file read is complete or cancelled.
Syntax
[Visual Basic]
Private Sub myGPSToolKit_FileComplete(ByVal sender As Object, ByVal e As System.EventArgs) Handles myGPSToolKit.FileComplete
[C#]
private void FileComplete(object sender, System.EventArgs e)
[C++]
System::Void FileComplete(System::Object * sender, System::EventArgs * e)
Parameters
sender
A reference to the GPSToolKit object.
e
The arguments associated with the event.
Arguments
None
Remarks
This event is fired after a file read initiated by the Open method has completed or has been cancelled with the Close method.
See Also
Open method | Close method
|