Class GridQueryCreateCellTextBoxEventArgs
Provides event data for the QueryCreateCellTextBox event which controls the kind of textbox control that is created for TextBox cells. In general the original text box behaves better than the RichText box with Hebrew and arabic languages. By default the grid uses the RichTextBox control for cell editing, but if you set GridModelOptions.UseRightToLeftCompatibleTextBox or if you handle this event you can plug-in a different textbox.
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public sealed class GridQueryCreateCellTextBoxEventArgs : SyncfusionEventArgs
Constructors
GridQueryCreateCellTextBoxEventArgs(GridTextBoxCellRenderer)
Internal only.
Declaration
public GridQueryCreateCellTextBoxEventArgs(GridTextBoxCellRenderer renderer)
Parameters
Type | Name | Description |
---|---|---|
GridTextBoxCellRenderer | renderer |
Properties
Renderer
Gets or sets the TextBoxCellRenderer. Internal only.
Declaration
public GridTextBoxCellRenderer Renderer { get; set; }
Property Value
Type |
---|
GridTextBoxCellRenderer |
TextBox
Gets or sets the Textbox. Internal only.
Declaration
public TextBoxBase TextBox { get; set; }
Property Value
Type |
---|
System.Windows.Forms.TextBoxBase |