| Visual Basic (Declaration) | |
|---|---|
<CategoryAttribute("Property Changed")> <DescriptionAttribute("Raised when a cell's value has been changed.")> Public Event ValueChanged As EventHandler | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Cell Dim handler As EventHandler AddHandler instance.ValueChanged, handler | |
| C# | |
|---|---|
[CategoryAttribute("Property Changed")] [DescriptionAttribute("Raised when a cell's value has been changed.")] public event EventHandler ValueChanged | |
Copy Code