SaveOptions.PageIndex
SaveOptions.PageIndex property
الحصول على أو تحديد فهرس الصفحة الأولى للحفظ. بشكل افتراضي هو 0.
public int PageIndex { get; set; }
أمثلة
يوضح كيفية حفظ مستند بتنسيق png.
// المسار إلى دليل المستندات.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
// قم بتحميل المستند في Aspose.
Document oneFile = new Document(dataDir + "Aspose.one");
// تهيئة كائن ImageSaveOptions
ImageSaveOptions opts = new ImageSaveOptions(SaveFormat.Png)
{
// تعيين فهرس الصفحة
PageIndex = 1
};
dataDir = dataDir + "ConvertSpecificPageToImage_out.png";
// احفظ المستند بصيغة PNG.
oneFile.Save(dataDir, opts);
يوضح كيفية حفظ مستند بتنسيق pdf.
// المسار إلى دليل المستندات.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
// قم بتحميل المستند في Aspose.
Document oneFile = new Document(dataDir + "Aspose.one");
// تهيئة كائن PdfSaveOptions
PdfSaveOptions opts = new PdfSaveOptions
{
// تعيين فهرس الصفحة للصفحة الأولى ليتم حفظها
PageIndex = 0,
// تعيين عدد الصفحات
PageCount = 1,
};
// احفظ المستند بصيغة PDF
dataDir = dataDir + "SaveRangeOfPagesAsPDF_out.pdf";
oneFile.Save(dataDir, opts);
يوضح كيفية حفظ مستند بتنسيق pdf باستخدام إعدادات محددة.
// المسار إلى دليل المستندات.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
// قم بتحميل المستند في Aspose.
Document doc = new Document(dataDir + "Aspose.one");
// تهيئة كائن PdfSaveOptions
PdfSaveOptions opts = new PdfSaveOptions
{
// استخدم ضغط Jpeg
ImageCompression = Saving.Pdf.PdfImageCompression.Jpeg,
// جودة ضغط JPEG
JpegQuality = 90
};
dataDir = dataDir + "Document.SaveWithOptions_out.pdf";
doc.Save(dataDir, opts);
يوضح كيفية إنشاء مستند وحفظه بتنسيق html في نطاق محدد من الصفحات.
// المسار إلى دليل المستندات.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
// تهيئة مستند OneNote
Document doc = new Document();
Page page = doc.AppendChildLast(new Page());
// النمط الافتراضي لكل النص في المستند.
ParagraphStyle textStyle = new ParagraphStyle { FontColor = Color.Black, FontName = "Arial", FontSize = 10 };
page.Title = new Title()
{
TitleText = new RichText() { Text = "Title text.", ParagraphStyle = textStyle },
TitleDate = new RichText() { Text = new DateTime(2011, 11, 11).ToString("D", CultureInfo.InvariantCulture), ParagraphStyle = textStyle },
TitleTime = new RichText() { Text = "12:34", ParagraphStyle = textStyle }
};
// حفظ في تنسيق HTML
dataDir = dataDir + "CreateAndSavePageRange_out.html";
doc.Save(dataDir, new HtmlSaveOptions
{
PageCount = 1,
PageIndex = 0
});
يوضح كيفية إنشاء مستند بنص منسق.
// المسار إلى دليل المستندات.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
// إنشاء كائن من فئة المستند
Document doc = new Document();
// تهيئة كائن فئة الصفحة
Page page = new Page();
// تهيئة كائن فئة العنوان
Title title = new Title();
// تهيئة كائن فئة TextStyle وتعيين خصائص التنسيق
ParagraphStyle defaultTextStyle = new ParagraphStyle
{
FontColor = Color.Black,
FontName = "Arial",
FontSize = 10
};
RichText titleText = new RichText() { ParagraphStyle = defaultTextStyle }.Append("Title!");
Outline outline = new Outline()
{
VerticalOffset = 100,
HorizontalOffset = 100
};
OutlineElement outlineElem = new OutlineElement();
TextStyle textStyleForHelloWord = new TextStyle
{
FontColor = Color.Red,
FontName = "Arial",
FontSize = 10,
};
TextStyle textStyleForOneNoteWord = new TextStyle
{
FontColor = Color.Green,
FontName = "Calibri",
FontSize = 10,
IsItalic = true,
};
TextStyle textStyleForTextWord = new TextStyle
{
FontColor = Color.Blue,
FontName = "Arial",
FontSize = 15,
IsBold = true,
IsItalic = true,
};
RichText text = new RichText() { ParagraphStyle = defaultTextStyle }
.Append("Hello", textStyleForHelloWord)
.Append(" OneNote", textStyleForOneNoteWord)
.Append(" text", textStyleForTextWord)
.Append("!", TextStyle.Default);
title.TitleText = titleText;
// تعيين عنوان الصفحة
page.Title = title;
// إضافة عقدة RichText
outlineElem.AppendChildLast(text);
// إضافة عقدة OutlineElement
outline.AppendChildLast(outlineElem);
// إضافة عقدة المخطط التفصيلي
page.AppendChildLast(outline);
// إضافة عقدة الصفحة
doc.AppendChildLast(page);
// حفظ مستند OneNote
dataDir = dataDir + "CreateDocWithFormattedRichText_out.one";
doc.Save(dataDir);
أنظر أيضا
- class SaveOptions
- مساحة الاسم Aspose.Note.Saving
- المجسم Aspose.Note