BaseGpsReceiverOnHeadingChanged Method |
Raises the HeadingChanged event.
Namespace: ZylSoft.GpsAssembly: ZylGpsReceiver (in ZylGpsReceiver.dll) Version: 3.29.9208.19412
XMLNS for XAML: Not mapped to an xmlns.
Syntaxprotected virtual void OnHeadingChanged(
ParamEventArgs e
)
Protected Overridable Sub OnHeadingChanged (
e As ParamEventArgs
)
Dim e As ParamEventArgs
Me.OnHeadingChanged(e)
protected:
virtual void OnHeadingChanged(
ParamEventArgs^ e
)
abstract OnHeadingChanged :
e : ParamEventArgs -> unit
override OnHeadingChanged :
e : ParamEventArgs -> unit
protected void OnHeadingChanged(
ParamEventArgs e
)
protected function OnHeadingChanged(
e : ParamEventArgs
)
function OnHeadingChanged(e);
PROTECTED VIRTUAL METHOD OnHeadingChanged(
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 OnHeadingChanged 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 OnHeadingChanged in a derived class, be sure to
call the base class's OnHeadingChanged method so that registered delegates
receive the event.
See Also