ValidationResult
Class
Contains the outcome of a DOCX format validation, including the result type and any errors found.
Definition
Namespace:Telerik.Windows.Documents.Flow.FormatProviders.Docx.Validation
Assembly:Telerik.Windows.Documents.Flow.dll
Syntax:
C#
public class ValidationResult
Inheritance: objectValidationResult
Properties
Gets whether the validation succeeded or encountered errors.
C#
public ValidationResultType ResultType { get; }
The result type.
Gets the collection of validation errors encountered, if any.
C#
public IEnumerable<ValidationError> ValidationErrors { get; }
The validation errors.