Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataGridViewEditingControlShowingEventArgs::CellStyle Property

 

Gets or sets the cell style of the edited cell.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property DataGridViewCellStyle^ CellStyle {
	DataGridViewCellStyle^ get();
	void set(DataGridViewCellStyle^ value);
}

Property Value

Type: System.Windows.Forms::DataGridViewCellStyle^

A DataGridViewCellStyle representing the style of the cell being edited.

Exception Condition
ArgumentNullException

The specified value when setting this property is null.

To customize the display characteristics of the control, set the properties of the object returned by the CellStyle property rather than setting the properties of the control returned by the Control property.

The following code example illustrates how to handle this event to change the BackColor property of the current cell. To run this example, paste the code into a form that contains a DataGridView named dataGridView1 and ensure that the EditingControlShowing event is associated with the event handler.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft