'Declaration Public Function New( _ ByVal ruleInError As ValidationRule, _ ByVal rowInError As Row, _ ByVal errorContent As Object, _ ByVal exception As Exception _ )
'Usage Dim ruleInError As ValidationRule Dim rowInError As Row Dim errorContent As Object Dim exception As Exception Dim instance As New RowValidationError(ruleInError, rowInError, errorContent, exception)
public RowValidationError( ValidationRule ruleInError, Row rowInError, object errorContent, Exception exception )
Parameters
- ruleInError
The CellValidationRule that contains the validation rule that failed.
- rowInError
The row whose value(s) failed the validation process.
- errorContent
An object containing the content to display when an error occurs.
- exception
The exception that was raised when the value failed the validation process. Can be a null reference (Nothing in Visual Basic).