DocumentSecurity
Innehåll
[
Dölj
]DocumentSecurity enumeration
Används som ett värde förSecurity
property. Anger säkerhetsnivån för ett dokument som ett numeriskt värde.
[Flags]
public enum DocumentSecurity
Värderingar
namn | Värde | Beskrivning |
---|---|---|
None | 0 | Det finns inga säkerhetstillstånd specificerade av egenskapen. |
PasswordProtected | 1 | Dokumentet är lösenordsskyddat. (Anteckning har hittills aldrig setts i ett dokument). |
ReadOnlyRecommended | 2 | Dokumentet som ska öppnas skrivskyddat om möjligt, men inställningen kan åsidosättas. |
ReadOnlyEnforced | 4 | Dokumentet som alltid ska öppnas skrivskyddat. |
ReadOnlyExceptAnnotations | 8 | Dokumentet som alltid ska öppnas skrivskyddat förutom anteckningar. |
Exempel
Visar hur du använder dokumentegenskaper för att visa säkerhetsnivån för ett dokument.
Document doc = new Document();
Assert.AreEqual(DocumentSecurity.None, doc.BuiltInDocumentProperties.Security);
// Om vi konfigurerar ett dokument att vara skrivskyddat kommer det att visa denna status med den inbyggda "Security"-egenskapen.
doc.WriteProtection.ReadOnlyRecommended = true;
doc.Save(ArtifactsDir + "DocumentProperties.Security.ReadOnlyRecommended.docx");
Assert.AreEqual(DocumentSecurity.ReadOnlyRecommended,
new Document(ArtifactsDir + "DocumentProperties.Security.ReadOnlyRecommended.docx").BuiltInDocumentProperties.Security);
// Skrivskydda ett dokument och verifiera sedan dess säkerhetsnivå.
doc = new Document();
Assert.False(doc.WriteProtection.IsWriteProtected);
doc.WriteProtection.SetPassword("MyPassword");
Assert.True(doc.WriteProtection.ValidatePassword("MyPassword"));
Assert.True(doc.WriteProtection.IsWriteProtected);
doc.Save(ArtifactsDir + "DocumentProperties.Security.ReadOnlyEnforced.docx");
Assert.AreEqual(DocumentSecurity.ReadOnlyEnforced,
new Document(ArtifactsDir + "DocumentProperties.Security.ReadOnlyEnforced.docx").BuiltInDocumentProperties.Security);
// "Säkerhet" är en beskrivande egenskap. Vi kan redigera dess värde manuellt.
doc = new Document();
doc.Protect(ProtectionType.AllowOnlyComments, "MyPassword");
doc.BuiltInDocumentProperties.Security = DocumentSecurity.ReadOnlyExceptAnnotations;
doc.Save(ArtifactsDir + "DocumentProperties.Security.ReadOnlyExceptAnnotations.docx");
Assert.AreEqual(DocumentSecurity.ReadOnlyExceptAnnotations,
new Document(ArtifactsDir + "DocumentProperties.Security.ReadOnlyExceptAnnotations.docx").BuiltInDocumentProperties.Security);
Se även
- namnutrymme Aspose.Words.Properties
- hopsättning Aspose.Words