Xceed Grid for WinForms v4.3 Documentation
QueryInputChar Event


Xceed.Grid.v4.3 Assembly > Xceed.Grid.Editors Namespace > CellEditorManager Class : QueryInputChar Event
Raised to determine if a character is an input character that the editor recognizes.
Syntax
'Declaration
 
<DescriptionAttribute("Raised to determine if a character is an input character that the editor recognizes.")>
<CategoryAttribute("Behavior")>
Public Event QueryInputChar As QueryEditorInputCharEventHandler
'Usage
 
Dim instance As CellEditorManager
Dim handler As QueryEditorInputCharEventHandler
 
AddHandler instance.QueryInputChar, handler
[Description("Raised to determine if a character is an input character that the editor recognizes.")]
[Category("Behavior")]
public event QueryEditorInputCharEventHandler QueryInputChar
Event Data

The event handler receives an argument of type QueryEditorInputCharEventArgs containing data related to this event. The following QueryEditorInputCharEventArgs properties provide information specific to this event.

PropertyDescription
Gets the Xceed.Grid.Cell being edited. (Inherited from Xceed.Grid.Editors.CellEditorEventArgs)
Gets the character to test.  
Gets the Control used to edit the cell's content. (Inherited from Xceed.Grid.Editors.CellEditorEventArgs)
Gets or sets a boolean value indicating if the CharCode should be sent directly to the editor.  
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also