次の方法で共有


Document.ProtectionType プロパティ (2007 System)

更新 : 2007 年 11 月

文書の保護の種類を取得します。

名前空間 :  Microsoft.Office.Tools.Word
アセンブリ :  Microsoft.Office.Tools.Word.v9.0 (Microsoft.Office.Tools.Word.v9.0.dll 内)

構文

'宣言
Public ReadOnly Property ProtectionType As WdProtectionType
'使用
Dim instance As Document
Dim value As WdProtectionType

value = instance.ProtectionType
public WdProtectionType ProtectionType { get; }

プロパティ値

型 : Microsoft.Office.Interop.Word.WdProtectionType

返される保護の種類は、wdAllowOnlyCommentswdAllowOnlyFormFieldswdAllowOnlyReadingwdAllowOnlyRevisions、または wdNoProtectionWdProtectionType 定数のいずれかになります。

次のコード例では、文書に保護が設定されているかどうかをチェックします。設定されていない場合、コメントだけを許可するように保護を設定します。

この例は、ドキュメント レベルのカスタマイズ用に作成されています。

Private Sub DocumentProtectionType()
    If Me.ProtectionType = Microsoft.Office.Interop.Word.WdProtectionType.wdNoProtection Then
        Me.Protect(Microsoft.Office.Interop.Word.WdProtectionType.wdAllowOnlyComments)
    End If
End Sub 
private void DocumentProtectionType()
{
    if (this.ProtectionType == Microsoft.Office.Interop.
        Word.WdProtectionType.wdNoProtection)
    {
        this.Protect(Microsoft.Office.Interop.Word.
            WdProtectionType.wdAllowOnlyComments, 
            ref missing, ref missing, ref missing,
            ref missing);
    }
}

アクセス許可

  • 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

参照

Document クラス

Document メンバ

Microsoft.Office.Tools.Word 名前空間