'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.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
NewValue | 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