DataGridView.EditingPanel Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the panel that contains the EditingControl.
public:
property System::Windows::Forms::Panel ^ EditingPanel { System::Windows::Forms::Panel ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.Panel EditingPanel { get; }
[<System.ComponentModel.Browsable(false)>]
member this.EditingPanel : System.Windows.Forms.Panel
Public ReadOnly Property EditingPanel As Panel
Property Value
The Panel that contains the EditingControl.
- Attributes
Examples
The following code example illustrates how to use the EditingPanel property in a DataGridView control to visually differentiate a cell when it is in edit mode. In this example, the BorderStyle of the cell's editing panel is set to Fixed3D. To run this example, paste the code into a form that contains a DataGridView named dataGridView1
.
this.dataGridView1.EditingPanel.BorderStyle = BorderStyle.Fixed3D;
Me.dataGridView1.EditingPanel.BorderStyle = BorderStyle.Fixed3D
Remarks
Unlike the EditingControl property, which is null
when the current cell is not in edit mode, the EditingPanel property is always available.