DataGridView.CellStyleContentChanged Event
Assembly: System.Windows.Forms (in system.windows.forms.dll)
'Declaration Public Event CellStyleContentChanged As DataGridViewCellStyleContentChangedEventHandler 'Usage Dim instance As DataGridView Dim handler As DataGridViewCellStyleContentChangedEventHandler AddHandler instance.CellStyleContentChanged, handler
/** @event */ public void add_CellStyleContentChanged (DataGridViewCellStyleContentChangedEventHandler value) /** @event */ public void remove_CellStyleContentChanged (DataGridViewCellStyleContentChangedEventHandler value)
JScript supports the use of events, but not the declaration of new ones.
The CellStyleContentChanged event occurs when a property value of a DataGridViewCellStyle object returned by one of the following properties changes:
If one of these properties is set to a different DataGridViewCellStyle, however, the corresponding PropertyNameChanged event occurs, but the CellStyleContentChanged event does not occur.
For row, column, and cell properties, the name of the PropertyNameChanged event begins with "Row", "Column", or "Cell" (for example, RowDefaultCellStyleChanged).
For more information about handling events, see Consuming Events.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
DataGridView ClassDataGridView Members
System.Windows.Forms Namespace
DataGridViewCellStyle
DataGridViewCellStyleContentChangedEventHandler
DataGridViewCellStyleContentChangedEventArgs
DataGridView.OnCellStyleContentChanged
Other Resources
Cell Styles in the Windows Forms DataGridView ControlDataGridView Control (Windows Forms)