Class LoadOptions

Class LoadOptions

Le nom : Aspose.Note Assemblée: Aspose.Note.dll (25.4.0)

Options utilisées pour charger un document.

public class LoadOptions
   {
       public bool KeepTextOnly;
       public bool KeepTextAndTables;
       public bool KeepTableRows;
       public bool KeepLastH1;
       public bool KeepLastH2;
       public bool KeepLastH3;
       public bool KeepLastH4;
       public bool KeepLastH5;
       public bool KeepLastH6;
       public bool KeepLastParaGraph;
   }

Inheritance

object LoadOptions

I membri ereditari

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Examples

Découvrez comment créer un document crypté.

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   LoadOptions loadOptions = new LoadOptions { DocumentPassword = "password" };
   Document doc = new Document(dataDir + "Sample1.one", loadOptions);

Découvrez comment créer un ordinateur crypté.

string dataDir = RunExamples.GetDataDir_NoteBook();
   var notebook = new Notebook(dataDir + "test.onetoc2", new NotebookLoadOptions() { DeferredLoading = true });
   notebook.LoadChildDocument(dataDir + "Aspose.one");
   notebook.LoadChildDocument(dataDir + "Locked Pass1.one", new LoadOptions() { DocumentPassword = "pass" });
   notebook.LoadChildDocument(dataDir + "Locked Pass2.one", new LoadOptions() { DocumentPassword = "pass2" });

Découvrez comment obtenir l’histoire de la page.

string dataDir = RunExamples.GetDataDir_Pages();
   Document document = new Document(dataDir + "Aspose.one", new LoadOptions { LoadHistory = true });
   Page firstPage = document.FirstChild;
   foreach (Page pageRevision in document.GetPageHistory(firstPage))
   {
       Console.WriteLine("LastModifiedTime: {0}", pageRevision.LastModifiedTime);
       Console.WriteLine("CreationTime: {0}", pageRevision.CreationTime);
       Console.WriteLine("Title: {0}", pageRevision.Title);
       Console.WriteLine("Level: {0}", pageRevision.Level);
       Console.WriteLine("Author: {0}", pageRevision.Author);
       Console.WriteLine();
   }

Constructors

Options de chargement ()

public LoadOptions()
   {
   }

Properties

DocumentPassword

Obtenez ou définissez un mot de passe pour le contenu du document crypté.Valuation est ignorée si le document n’est pas protégé par la parole.

public string DocumentPassword
   {
      get;
      set;
   }

Valore di proprietà

string

Examples

Découvrez comment créer un document crypté.

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   LoadOptions loadOptions = new LoadOptions { DocumentPassword = "password" };
   Document doc = new Document(dataDir + "Sample1.one", loadOptions);

Découvrez comment créer un ordinateur crypté.

string dataDir = RunExamples.GetDataDir_NoteBook();
   var notebook = new Notebook(dataDir + "test.onetoc2", new NotebookLoadOptions() { DeferredLoading = true });
   notebook.LoadChildDocument(dataDir + "Aspose.one");
   notebook.LoadChildDocument(dataDir + "Locked Pass1.one", new LoadOptions() { DocumentPassword = "pass" });
   notebook.LoadChildDocument(dataDir + "Locked Pass2.one", new LoadOptions() { DocumentPassword = "pass2" });

LoadHistory

Obtenez ou définissez une valeur indiquant si un chargeur de document devrait négliger l’historique.Utilisez cette option pour réduire la mémoire et le usage CPU.La valeur par défaut est ’true'.

public bool LoadHistory
   {
      get;
      set;
   }

Valore di proprietà

bool

Examples

Découvrez comment obtenir l’histoire de la page.

string dataDir = RunExamples.GetDataDir_Pages();
   Document document = new Document(dataDir + "Aspose.one", new LoadOptions { LoadHistory = true });
   Page firstPage = document.FirstChild;
   foreach (Page pageRevision in document.GetPageHistory(firstPage))
   {
       Console.WriteLine("LastModifiedTime: {0}", pageRevision.LastModifiedTime);
       Console.WriteLine("CreationTime: {0}", pageRevision.CreationTime);
       Console.WriteLine("Title: {0}", pageRevision.Title);
       Console.WriteLine("Level: {0}", pageRevision.Level);
       Console.WriteLine("Author: {0}", pageRevision.Author);
       Console.WriteLine();
   }
 Français