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 のサポートおよびフィードバックを参照してください。