[]
        
(Showing Draft Content)

C1.Framework.XView.IsInputKey

IsInputKey Method

IsInputKey(Keys)

Determines whether the specified key is a regular input key or a special key that requires preprocessing.

Declaration
protected override bool IsInputKey(Keys keyData)
Parameters
Type Name Description
Keys keyData

One of the Keys values.

Returns
Type Description
bool

True if the specified key is a regular input key; otherwise, false.

Overrides

IsInputKey(Control, Keys)

Internal version of IsInputKey that should be called by hosted controls in order to allow the view to handle tab keys, arrows, etc.

Declaration
public virtual bool IsInputKey(Control ctl, Keys keyData)
Parameters
Type Name Description
Control ctl

Control that received the key.

Keys keyData

One of the Keys values.

Returns
Type Description
bool

True if the specified key is a regular input key; otherwise, false.

Implements