Xceed Grid for WinForms v4.3 Documentation
ValueChanging Event


Xceed.Grid.v4.3 Assembly > Xceed.Grid Namespace > Cell Class : ValueChanging Event
Raised when a cell's value is being changed.
Syntax
'Declaration
 
<DescriptionAttribute("Raised when a cell's value is being changed.")>
<CategoryAttribute("Data")>
Public Event ValueChanging As ValueChangingEventHandler
'Usage
 
Dim instance As Cell
Dim handler As ValueChangingEventHandler
 
AddHandler instance.ValueChanging, handler
[Description("Raised when a cell's value is being changed.")]
[Category("Data")]
public event ValueChangingEventHandler ValueChanging
Event Data

The event handler receives an argument of type ValueChangingEventArgs containing data related to this event. The following ValueChangingEventArgs properties provide information specific to this event.

PropertyDescription
(Inherited from System.ComponentModel.CancelEventArgs)
Gets or sets the new value that is to be assigned to the cell.  
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