ValidationIssue.Delete method (Visio)
Deletes the ValidationIssue object from the document.
Syntax
expression.Delete
expression A variable that represents a ValidationIssue object.
Return value
Nothing
Example
The following Visual Basic for Applications (VBA) example shows how to use the Delete method to delete validation issues that belong to a particular validation rule set.
Set vsoDocument = Visio.ActiveDocument
Set vsoIssues = vsoDocument.Validation.Issues
intIssueTotal = vsoIssues.Count
intIssueNumber = 1
' Iterate through the validation issues.
For intCurrentIssue = 1 To intIssueTotal
Set vsoIssue = vsoDocument.Validation.Issues(intIssueNumber)
' Delete the issues that belong to the vsoValidationRuleSet rule set.
If vsoIssue.Rule.RuleSet Is vsoValidationRuleSet Then
vsoIssue.Delete
Else
intIssueNumber = intIssueNumber + 1
End If
Next intCurrentIssue
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.