使用英语阅读

通过


LabelInfo 对象 (Office)

表示标签信息数据对象。

备注

LabelInfo 对象可以传递给 SensitivityLabel 对象的 SetLabel 方法。

示例

以下示例显示了 LabelInfo 对象成员的用法。

Sub SetLabelInfo()

 Dim myLabelInfo As Office.LabelInfo
 Set myLabelInfo = Application.ActiveDocument.SensitivityLabel.CreateLabelInfo()
 With myLabelInfo
  .ActionId = "5cc46055-305d-4bc1-8f5f-5edf82231378"
  .AssignmentMethod = MsoAssignmentMethod.PRIVILEGED
  .ContentBits = 4
  .IsEnabled = True
  .Justification = "Some justification needed only if downgrading label."
  .LabelId = "9203368f-916c-4d59-8292-9f1c6a1e8f39"
  .LabelName = "MyLabelName"
  .SetDate = Now()
  .SiteId = "6c15903a-880e-4e17-818a-6cb4f7935615"
 End With

End Sub

另请参阅

支持和反馈

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