Validation.Issues Property (Visio)
Returns the collection of all the validation issues in the document. Read-only.
Version Information
Version Added: Visio 2010
Syntax
expression .Issues
expression A variable that represents a Validation object.
Return Value
Example
The following Visual Basic for Applications (VBA) example shows how to use the Issues property to get an object that represents the collection of all the validation issues in the document.
Dim vsoDocument As Visio.Document
Dim vsoIssues As Visio.ValidationIssues
Set vsoDocument = Visio.ActiveDocument
Set vsoIssues = vsoDocument.Validation.Issues