Class NotebookLoadOptions

Class NotebookLoadOptions

اسم الفضاء : Aspose.Note تجميع: Aspose.Note.dll (25.4.0)

الخيارات المستخدمة لتحميل الكمبيوتر المحمول.

public class NotebookLoadOptions

Inheritance

object NotebookLoadOptions

الأعضاء الموروثين

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

Examples

إظهار كيفية وضع الكمبيوتر المحمول المشفر.

// The path to the documents directory.
                                              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" });

Constructors

NotebookLoadOptions()

public NotebookLoadOptions()

Properties

DeferredLoading

يحصل أو يضع قيمة تشير إلى ما إذا كان الأطفال مستنداتيجب أن يتم تحميلها صراحة في وقت لاحق.

public bool DeferredLoading { get; set; }

قيمة الممتلكات

bool

Examples

إظهار كيفية وضع الكمبيوتر المحمول المشفر.

// The path to the documents directory.
                                              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" });

Remarks

القيمة الافتراضية هي “مزيفة” ، لذلك سيتم تحميل وثائق الطفل بشكل افتراضي.القيمة “صادقة” تشير إلى أن المستخدم يجب أن يطلب منك الاتصال Aspose.Note.Notebook.LoadChildDocument(System.String) أو __ WL31.Notbook (Systems. String).للمصدر الصغير لكل جهاز كمبيوتر محمول بعد أن يتم تحميل الكاميرا نفسها.إذا كانت قيمة ‘حقيقية’ ، Wl31.نوت بوك سوف يتم تجاهل خيار LoadOptions.InstantLoading.If the notebook is load from stream, the value is always ’true’ although was explicitly set by the user to ‘false’.

InstantLoading

يحصل أو يضع قيمة تشير إلى ما إذا كان الأطفال مستنداتيجب تحميلها بينما يتم تحميل وثيقة الوالد.

public bool InstantLoading { get; set; }

قيمة الممتلكات

bool

Remarks

القيمة الافتراضية هي “مزيفة” ، وبالتالي سيتم تحميل وثائق الطفل بسهولة ، أي يجب تأجيل تحميلها حتى يتم الوصول المباشر إلى طفل معين.

 عربي