PenInputPanel.OnVisibleChanged Method

PenInputPanel.OnVisibleChanged Method

Allows derived classes to modify the default behavior of the VisibleChanged event.

Definition

Visual Basic .NET Overridable Protected Sub OnVisibleChanged( _
ByVal e As PenInputPanelVisibleChangedEventArgs _
)
C# protected virtual void OnVisibleChanged(
PenInputPanelVisibleChangedEventArgs e
);
Managed C++ protected: virtual void OnVisibleChanged(
PenInputPanelVisibleChangedEventArgs *e
);

Parameters

e Microsoft.Ink.PenInputPanelVisibleChangedEventArgs. Event arguments for the event

Remarks

Raising an event invokes the event handler through a delegate.

In derived classes, this method is called only if a delegate is attached to the VisibleChanged event.

When overriding this method in a derived class, call the OnVisibleChanged method of the base class so that registered delegates receive the event.

See Also