BaseGpsReceiverOnCourseChanged Method |
Raises the CourseChanged event.
Namespace: ZylSoft.GpsAssembly: ZylGpsReceiver (in ZylGpsReceiver.dll) Version: 3.29.9208.19412
XMLNS for XAML: Not mapped to an xmlns.
Syntaxprotected virtual void OnCourseChanged(
ParamEventArgs e
)
Protected Overridable Sub OnCourseChanged (
e As ParamEventArgs
)
Dim e As ParamEventArgs
Me.OnCourseChanged(e)
protected:
virtual void OnCourseChanged(
ParamEventArgs^ e
)
abstract OnCourseChanged :
e : ParamEventArgs -> unit
override OnCourseChanged :
e : ParamEventArgs -> unit
protected void OnCourseChanged(
ParamEventArgs e
)
protected function OnCourseChanged(
e : ParamEventArgs
)
function OnCourseChanged(e);
PROTECTED VIRTUAL METHOD OnCourseChanged(
e AS ParamEventArgs
) AS VOID
No code example is currently available or this language may not be supported.
Parameters
- e ParamEventArgs
-
A ParamEventArgs that contains the event data.
Remarks
Raising an event invokes the event handler through a delegate.
The OnCourseChanged method also allows derived classes to handle the event without
attaching a delegate. This is the preferred technique for handling the event
in a derived class.
Notes to Inheritors: When overriding OnCourseChanged in a derived class, be sure to
call the base class's OnCourseChanged method so that registered delegates
receive the event.
See Also