Class KeepSolidObjectsAlgorithm
محتويات
[
يخفي
]KeepSolidObjectsAlgorithm class
ينقل الكائن بالكامل إلى الصفحة التالية في حالة عدم احتوائه في الصفحة الأصلية.
public class KeepSolidObjectsAlgorithm : PageSplittingAlgorithm
المنشئون
اسم | وصف |
---|---|
KeepSolidObjectsAlgorithm() | يقوم بتهيئة مثيل جديد لملفKeepSolidObjectsAlgorithm فئة تستخدم حد الارتفاع الافتراضي للجزء المستنسخ. |
KeepSolidObjectsAlgorithm(float) | يقوم بتهيئة مثيل جديد لملفKeepSolidObjectsAlgorithm فئة باستخدام حد ارتفاع معين للجزء المستنسخ. |
الخصائص
اسم | وصف |
---|---|
HeightLimitOfClonedPart { get; } | يحصل على حد ارتفاع الجزء المستنسخ. |
مجالات
اسم | وصف |
---|---|
const DefaultHeightLimitOfClonedPart | الحجم الأقصى الافتراضي للجزء المستنسخ. |
أمثلة
يوضح كيفية حفظ دفتر الملاحظات بتنسيق pdf بخيارات محددة.
// المسار إلى دليل المستندات.
string dataDir = RunExamples.GetDataDir_NoteBook();
// تحميل دفتر ملاحظات OneNote
var notebook = new Notebook(dataDir + "Notizbuch �ffnen.onetoc2");
var notebookSaveOptions = new NotebookPdfSaveOptions();
var documentSaveOptions = notebookSaveOptions.DocumentSaveOptions;
documentSaveOptions.PageSplittingAlgorithm = new KeepSolidObjectsAlgorithm();
dataDir = dataDir + "ConvertToPDF_out.pdf";
// حفظ دفتر الملاحظات
notebook.Save(dataDir, notebookSaveOptions);
يوضح كيفية إرسال المستند إلى الطابعة باستخدام مربع حوار Windows القياسي مع خيارات محددة.
// المسار إلى دليل المستندات.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
var document = new Aspose.Note.Document(dataDir + "Aspose.one");
var printerSettings = new PrinterSettings() { FromPage = 0, ToPage = 10 };
printerSettings.DefaultPageSettings.Landscape = true;
printerSettings.DefaultPageSettings.Margins = new System.Drawing.Printing.Margins(50, 50, 150, 50);
document.Print(new PrintOptions()
{
PrinterSettings = printerSettings,
Resolution = 1200,
PageSplittingAlgorithm = new KeepSolidObjectsAlgorithm(),
DocumentName = "Test.one"
});
عندما يتم حفظ صفحات OneNote الطويلة بتنسيق pdf ، يتم تقسيمها عبر الصفحات. يوضح المثال كيفية تكوين منطق تقسيم الكائنات الموجودة في فواصل الصفحة.
// المسار إلى دليل المستندات.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
// قم بتحميل المستند في Aspose.
Document doc = new Document(dataDir + "Aspose.one");
var pdfSaveOptions = new PdfSaveOptions();
pdfSaveOptions.PageSplittingAlgorithm = new AlwaysSplitObjectsAlgorithm();
// أو
pdfSaveOptions.PageSplittingAlgorithm = new KeepPartAndCloneSolidObjectToNextPageAlgorithm();
// أو
pdfSaveOptions.PageSplittingAlgorithm = new KeepSolidObjectsAlgorithm();
float heightLimitOfClonedPart = 500;
pdfSaveOptions.PageSplittingAlgorithm = new KeepPartAndCloneSolidObjectToNextPageAlgorithm(heightLimitOfClonedPart);
// أو
pdfSaveOptions.PageSplittingAlgorithm = new KeepSolidObjectsAlgorithm(heightLimitOfClonedPart);
pdfSaveOptions.PageSplittingAlgorithm = new KeepSolidObjectsAlgorithm(100);
// أو
pdfSaveOptions.PageSplittingAlgorithm = new KeepSolidObjectsAlgorithm(400);
dataDir = dataDir + "UsingKeepSOlidObjectsAlgorithm_out.pdf";
doc.Save(dataDir);
أنظر أيضا
- class PageSplittingAlgorithm
- مساحة الاسم Aspose.Note.Saving
- المجسم Aspose.Note