ValidationRuleSets.Add 方法 (Visio)
将新的空 ValidationRuleSet 对象添加到文档的 ValidationRuleSets 集合。
语法
表达式。添加 (NameU)
表达 一个代表 ValidationRuleSets 对象的变量。
参数
名称 | 必需/可选 | 数据类型 | 说明 |
---|---|---|---|
NameU | 必需 | 字符串 | 要分配给新验证规则集的通用名称。 |
返回值
ValidationRuleSet
备注
如果 NameU 参数不是有效的字符串,或者该参数匹配文档中现有规则集的通用名称,则 Microsoft Visio 将返回“参数无效”错误。
新验证规则集的默认属性值如下所示:
- Description = [empty]
- 启用 = True; 名字 = NameU
- RuleSetFlags = visRuleSetDefault
示例
以下Visual Basic for Applications (VBA) 示例演示如何使用 Add 方法将名为“Connectivity”的验证规则集添加到活动文档。
Set vsoDocument = Visio.ActiveDocument
' Add a validation rule set to the document.
Set vsoValidationRuleSet =
vsoDocument.Validation.RuleSets.Add("Connectivity")
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。