Validation.RuleSets 属性 (Visio)

返回文档中所有验证规则集的集合。 此为只读属性。

语法

expressionRuleSets

表达 一个代表 Validation 对象的变量。

返回值

ValidationRuleSets

示例

以下示例代码基于 David Parker 提供的代码

以下Visual Basic for Applications (VBA) 示例演示如何使用 RuleSets 属性获取活动文档中所有验证规则集的名称,并在“即时”窗口中打印这些名称。

Public Sub RuleSets_Example()

    Dim vsoDocument As Visio.Document
    Dim vsoRuleSet As Visio.ValidationRuleSet
    Dim vsoValidationRule As Visio.ValidationRule
    
    Set vsoDocument = Visio.ActiveDocument
    
    For Each vsoRuleSet In vsoDocument.Validation.RuleSets
    
        If vsoRuleSet.Enabled Then
            
            Debug.Print vsoRuleSet.NameU
            
        End If
    Next 
       
End Sub

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。