DocumentBase.ProtectionType プロパティ
文書の保護の種類を取得します。
名前空間: Microsoft.Office.Tools.Word
アセンブリ: Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll 内)
構文
'宣言
Public ReadOnly Property ProtectionType As WdProtectionType
Get
public WdProtectionType ProtectionType { get; }
プロパティ値
型: Microsoft.Office.Interop.Word.WdProtectionType
返される保護の種類は、wdAllowOnlyComments、wdAllowOnlyFormFields、wdAllowOnlyReading、wdAllowOnlyRevisions、または wdNoProtection の WdProtectionType 定数のいずれかになります。
例
次のコード例では、文書に保護が設定されているかどうかをチェックします。 設定されていない場合、コメントだけを許可するように保護を設定します。 この例を使用するには、これをドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。
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);
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。