'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.
Property | Description |
---|---|
Cell | Gets the Xceed.Grid.Cell being edited. (Inherited from Xceed.Grid.Editors.CellEditorEventArgs) |
CharCode | Gets the character to test. |
Control | Gets the Control used to edit the cell's content. (Inherited from Xceed.Grid.Editors.CellEditorEventArgs) |
IsInputChar | 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