'DeclarationPublic Event CellValidateInfoNeeded As EventHandler(Of CellValidateInfoNeededEventArgs)
'UsageDim instance As FpSpread Dim handler As EventHandler(Of CellValidateInfoNeededEventArgs) AddHandler instance.CellValidateInfoNeeded, handler
public event EventHandler<CellValidateInfoNeededEventArgs> CellValidateInfoNeeded
Event Data
The event handler receives an argument of type CellValidateInfoNeededEventArgs containing data related to this event. The following CellValidateInfoNeededEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| CellValidator | Gets the cell validator. |
| IsValid | Gets whether this validation is valid. |
| ValidateContext | Gets the validate context. |
See Also