Class OneSaveOptions
Class OneSaveOptions
Namn på plats: Aspose.Note.Saving Sammanfattning: Aspose.Note.dll (25.4.0)
Tillåter att ange ytterligare alternativ när du sparar dokumentet i OneNote-format.
public sealed class OneSaveOptions : SaveOptions
{
private bool _embedFonts;
private SaveFormat _saveFormat;
private SavePriority _savePriority;
public OneSaveOptions()
{
EmbedFonts = true;
SaveFormat = SaveFormat.Docx;
SavePriority = SavePriority.MaxCompatibility;
}
public bool EmbedFonts
{
get { return _embedFonts; }
set { _embedFonts = value; }
}
public SaveFormat SaveFormat
{
get { return _saveFormat; }
set { _saveFormat = value; }
}
public SavePriority SavePriority
{
get { return _savePriority; }
set { _savePriority = value; }
}
}
Inheritance
object ← SaveOptions ← OneSaveOptions
Arvsmedlemmar
SaveOptions.SaveFormat , SaveOptions.FontsSubsystem , SaveOptions.PageIndex , SaveOptions.PageCount , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Visa hur man sparar dokument med kryptering.
string dataDir = RunExamples.GetDataDir_NoteBook();
Document document = new Document();
document.Save(dataDir + @"\CreatingPasswordProtectedDoc_out.one", new OneSaveOptions { DocumentPassword = "pass" });
Visa hur du sparar ett dokument med OneSaveOptions.
string inputFile = "Sample1.one";
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
string outputFile = "SaveDocToOneNoteFormatUsingOneSaveOptions_out.one";
Document document = new Document(dataDir + inputFile);
document.Save(dataDir + outputFile, new OneSaveOptions());
Constructors
OneSaveOptions ()
public OneSaveOptions()
{
}
Properties
DocumentPassword
Få eller ange ett lösenord för att kryptera innehållet i dokumentet.
public string DocumentPassword
{
get;
set;
}
Fastighetsvärde
Examples
Visa hur man sparar dokument med kryptering.
string dataDir = RunExamples.GetDataDir_NoteBook();
Document document = new Document();
document.Save(dataDir + "CreatingPasswordProtectedDoc_out.one", new OneSaveOptions() { DocumentPassword = "pass" });