Infragistics(R) NetAdvantage(R) Windows Forms
OnOwnerKeyPress Method
See Also  E-mail your feedback on this topic.
Infragistics.Win Namespace > EmbeddableEditorBase Class : OnOwnerKeyPress Method

e
The key event args describing which key was pressed.
Occurs when the owner gets a key press while in edit mode.

Syntax

Visual Basic (Declaration) 
Protected Overridable Sub OnOwnerKeyPress( _
   ByVal e As KeyPressEventArgs _
) 
C# 
protected virtual void OnOwnerKeyPress( 
   KeyPressEventArgs e
)

Parameters

e
The key event args describing which key was pressed.

Remarks

The default implementation does nothing. Derived editor classes that are interested in keystrokes from the owner when it has focus should override this method.

See Also