Invoked when the document viewer receives a KeyPress event. This method will first raise the KeyPress event of the DocumentViewer. If the event does not get handled by an event handler (i.e. the Handled property of the event remains false), it will pass it to the interactor that has the focus. If the interactor handles the event, it will prohibit further processing by setting the Handled flag.

Namespace: TallComponents.Interaction.WinForms.Controls
Assembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.46.0

Syntax

C#
protected override void OnKeyPress(
	KeyPressEventArgs e
)
Visual Basic
Protected Overrides Sub OnKeyPress ( _
	e As KeyPressEventArgs _
)

Parameters

e
Type: System.Windows.Forms..::..KeyPressEventArgs
The event data.

See Also