Proprietà DocumentBase.ProtectionType
Ottiene il tipo di protezione per il documento.
Spazio dei nomi: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property ProtectionType As WdProtectionType
Get
public WdProtectionType ProtectionType { get; }
Valore proprietà
Tipo: Microsoft.Office.Interop.Word.WdProtectionType
Il tipo di protezione restituito può essere dato da una delle seguenti costanti WdProtectionType: wdAllowOnlyComments, wdAllowOnlyFormFields, wdAllowOnlyReading, wdAllowOnlyRevisions o wdNoProtection.
Esempi
Nell'esempio di codice riportato di seguito viene illustrato come controllare se per il documento è stata impostata la protezione. In caso contrario, la protezione viene impostata per consentire solo i commenti. Per utilizzare questo esempio, eseguirlo dalla classe ThisDocument in un progetto a livello di documento.
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);
}
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.