NotebookLoadOptions.DeferredLoading
NotebookLoadOptions.DeferredLoading property
Ottiene o imposta un valore che indica se i documenti secondari devono essere caricati in modo esplicito in un secondo momento.
public bool DeferredLoading { get; set; }
Osservazioni
Il valore predefinito èfalso
, quindi i documenti figlio verranno caricati in modo implicito. ValueVERO
indica che l’utente deve chiamareLoadChildDocument
O per il nodo figlio di ogni notebook dopo che il notebook stesso è stato caricato. Se il valore èVERO
,InstantLoading
l’opzione verrà ignorata. Se il notebook viene caricato dallo stream, il valore è alwaysVERO
nonostante sia stato esplicitamente impostato dall’utente sufalso
.
Esempi
Mostra come creare un notebook crittografato.
// Il percorso della directory dei documenti.
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" });
Guarda anche
- class NotebookLoadOptions
- spazio dei nomi Aspose.Note
- assemblea Aspose.Note