مدیریت پاراگرافهای متن PowerPoint در C++
بررسی کلی
Aspose.Slides for C++ متن را بهصورت سلسلهمراتبی از فریمهای متنی، پاراگرافها و بخشها نمایش میدهد:
- ITextFrame مخزن متن در یک شکل را نشان میدهد و دسترسی به مجموعه پاراگرافهای آن را فراهم میکند.
- IParagraph یک پاراگراف در فریم متنی را نشان میدهد و دسترسی به بخشها و قالببندی سطح پاراگراف را فراهم میکند.
- IPortion یک بخش متنی درون یک پاراگراف را نشان میدهد. هر بخش میتواند متن و قالببندی سطح کاراکتر خود را داشته باشد.
بنابراین یک پاراگراف میتواند متنی با قلمها، رنگها، اندازهها و قالببندیهای مختلف داشته باشد که با استفاده از بخشهای متعدد ایجاد میشود.
ایجاد و قالببندی پاراگرافها
ایجاد پاراگرافها با بخشهای متعدد
مراحل زیر یک فریم متنی با سه پاراگراف، هر کدام شامل سه بخش، ایجاد میکند:
- یک نمونه از کلاس Presentation ایجاد کنید.
- از طریق اندیس، به مرجع اسلاید مربوطه دسترسی پیدا کنید.
- یک IAutoShape مستطیلی به اسلاید اضافه کنید.
- به ITextFrame شکل دسترسی پیدا کنید.
- از پاراگراف پیشفرض استفاده کنید و دو شیء دیگر از نوع IParagraph به فریم متن اضافه کنید.
- به اندازه کافی شیء IPortion اضافه کنید تا هر پاراگراف شامل سه بخش باشد. پاراگراف پیشفرض قبلاً یک بخش خالی دارد.
- متن هر بخش را تنظیم کنید.
- قالببندی سطح کاراکتر را از طریق IPortion::get_PortionFormat اعمال کنید.
- ارائهی اصلاحشده را ذخیره کنید.
این مثال C++ مراحل را پیادهسازی میکند:
#include <DOM/FillType.h>
#include <DOM/IAutoShape.h>
#include <DOM/IParagraphCollection.h>
#include <DOM/IPortionCollection.h>
#include <DOM/NullableBool.h>
#include <DOM/Paragraph.h>
#include <DOM/Portion.h>
#include <DOM/Presentation.h>
#include <DOM/ShapeType.h>
#include <Export/SaveFormat.h>
#include <drawing/color.h>
#include <system/string.h>
using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System;
using namespace System::Drawing;
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto shape = slide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 50, 150, 300, 150);
auto textFrame = shape->get_TextFrame();
auto firstParagraph = textFrame->get_Paragraph(0);
firstParagraph->get_Portions()->Add(MakeObject<Portion>());
firstParagraph->get_Portions()->Add(MakeObject<Portion>());
auto secondParagraph = MakeObject<Paragraph>();
secondParagraph->get_Portions()->Add(MakeObject<Portion>());
secondParagraph->get_Portions()->Add(MakeObject<Portion>());
secondParagraph->get_Portions()->Add(MakeObject<Portion>());
textFrame->get_Paragraphs()->Add(secondParagraph);
auto thirdParagraph = MakeObject<Paragraph>();
thirdParagraph->get_Portions()->Add(MakeObject<Portion>());
thirdParagraph->get_Portions()->Add(MakeObject<Portion>());
thirdParagraph->get_Portions()->Add(MakeObject<Portion>());
textFrame->get_Paragraphs()->Add(thirdParagraph);
auto paragraphCount = textFrame->get_Paragraphs()->get_Count();
for (int paragraphIndex = 0; paragraphIndex < paragraphCount; paragraphIndex++)
{
auto paragraph = textFrame->get_Paragraph(paragraphIndex);
auto portionCount = paragraph->get_Portions()->get_Count();
for (int portionIndex = 0; portionIndex < portionCount; portionIndex++)
{
auto portion = paragraph->get_Portion(portionIndex);
portion->set_Text(String::Format(u"Portion {0}.{1}", paragraphIndex + 1, portionIndex + 1));
auto portionFormat = portion->get_PortionFormat();
if (portionIndex == 0)
{
portionFormat->get_FillFormat()->set_FillType(FillType::Solid);
portionFormat->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Red());
portionFormat->set_FontBold(NullableBool::True);
portionFormat->set_FontHeight(15);
}
else if (portionIndex == 1)
{
portionFormat->get_FillFormat()->set_FillType(FillType::Solid);
portionFormat->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Blue());
portionFormat->set_FontItalic(NullableBool::True);
portionFormat->set_FontHeight(18);
}
}
}
presentation->Save(u"paragraphs_with_portions.pptx", SaveFormat::Pptx);
presentation->Dispose();
ایجاد فهرستهای نقطهدار و عددی
ایجاد فهرست نقطهدار یا عددی
نقطهها و شمارهگذاری موارد مرتبط را برای اسکن آسانتر میکند. در Aspose.Slides تنظیمات فهرست از طریق IBulletFormat تعریف میشود.
- یک نمونه از کلاس Presentation ایجاد کنید.
- از طریق اندیس، به مرجع اسلاید مربوطه دسترسی پیدا کنید.
- یک IAutoShape به اسلاید انتخاب شده اضافه کنید.
- به ITextFrame شکل دسترسی پیدا کنید.
- پاراگراف پیشفرض را از فریم متن حذف کنید.
- یک Paragraph برای نقطه نماد ایجاد کنید.
- IBulletFormat::set_Type را به BulletType::Symbol تنظیم کنید و کاراکتر نقطه را مشخص کنید.
- متن پاراگراف، تورفتگی، رنگ نقطه و ارتفاع نقطه را تنظیم کنید.
- پاراگراف را به فریم متن اضافه کنید.
- پاراگراف دوم را ایجاد کنید و IBulletFormat::set_Type را به BulletType::Numbered تنظیم کنید.
- سبک نقطه عددی را پیکربندی کنید و پاراگراف را به فریم متن اضافه کنید.
- ارائه را ذخیره کنید.
این مثال C++ یک نقطه نمادی و یک نقطه عددی ایجاد میکند:
#include <DOM/BulletType.h>
#include <DOM/ColorType.h>
#include <DOM/IAutoShape.h>
#include <DOM/IParagraphCollection.h>
#include <DOM/NullableBool.h>
#include <DOM/NumberedBulletStyle.h>
#include <DOM/Paragraph.h>
#include <DOM/Presentation.h>
#include <DOM/ShapeType.h>
#include <Export/SaveFormat.h>
#include <drawing/color.h>
#include <system/convert.h>
using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System;
using namespace System::Drawing;
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto shape = slide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 200, 200, 400, 200);
auto textFrame = shape->get_TextFrame();
textFrame->get_Paragraphs()->Clear();
auto symbolParagraph = MakeObject<Paragraph>();
symbolParagraph->set_Text(u"Welcome to Aspose.Slides");
symbolParagraph->get_ParagraphFormat()->get_Bullet()->set_Type(BulletType::Symbol);
symbolParagraph->get_ParagraphFormat()->get_Bullet()->set_Char(Convert::ToChar(0x2022));
symbolParagraph->get_ParagraphFormat()->set_Indent(25);
symbolParagraph->get_ParagraphFormat()->get_Bullet()->get_Color()->set_ColorType(ColorType::RGB);
symbolParagraph->get_ParagraphFormat()->get_Bullet()->get_Color()->set_Color(Color::get_Black());
symbolParagraph->get_ParagraphFormat()->get_Bullet()->set_IsBulletHardColor(NullableBool::True);
symbolParagraph->get_ParagraphFormat()->get_Bullet()->set_Height(100);
textFrame->get_Paragraphs()->Add(symbolParagraph);
auto numberedParagraph = MakeObject<Paragraph>();
numberedParagraph->set_Text(u"This is a numbered item");
numberedParagraph->get_ParagraphFormat()->get_Bullet()->set_Type(BulletType::Numbered);
numberedParagraph->get_ParagraphFormat()->get_Bullet()->set_NumberedBulletStyle(NumberedBulletStyle::BulletCircleNumWDBlackPlain);
numberedParagraph->get_ParagraphFormat()->set_Indent(25);
numberedParagraph->get_ParagraphFormat()->get_Bullet()->get_Color()->set_ColorType(ColorType::RGB);
numberedParagraph->get_ParagraphFormat()->get_Bullet()->get_Color()->set_Color(Color::get_Black());
numberedParagraph->get_ParagraphFormat()->get_Bullet()->set_IsBulletHardColor(NullableBool::True);
numberedParagraph->get_ParagraphFormat()->get_Bullet()->set_Height(100);
textFrame->get_Paragraphs()->Add(numberedParagraph);
presentation->Save(u"bulleted_and_numbered_list.pptx", SaveFormat::Pptx);
presentation->Dispose();
استفاده از نقطههای تصویری
نقطههای تصویری به شما امکان میدهند بهجای نماد یا شماره از یک تصویر سفارشی استفاده کنید.
- یک نمونه از کلاس Presentation ایجاد کنید.
- از طریق اندیس، به مرجع اسلاید مربوطه دسترسی پیدا کنید.
- یک IAutoShape اضافه کنید و به ITextFrame آن دسترسی پیدا کنید.
- پاراگراف پیشفرض را از فریم متن حذف کنید.
- تصویر نقطه را بارگذاری کنید و بهعنوان یک IPPImage به مجموعه تصویرهای ارائه اضافه کنید.
- یک Paragraph ایجاد کنید و متن آن را تنظیم کنید.
- IBulletFormat::set_Type را به BulletType::Picture تنظیم کنید.
- تصویر را از طریق ISlidesPicture::set_Image اختصاص دهید و ارتفاع نقطه را تنظیم کنید.
- پاراگراف را به فریم متن اضافه کنید.
- ارائهی اصلاحشده را ذخیره کنید.
این مثال C++ یک نقطه تصویری ایجاد میکند:
#include <DOM/BulletType.h>
#include <DOM/IAutoShape.h>
#include <DOM/IImageCollection.h>
#include <DOM/IParagraphCollection.h>
#include <DOM/Paragraph.h>
#include <DOM/Presentation.h>
#include <DOM/ShapeType.h>
#include <Export/SaveFormat.h>
#include <IImage.h>
#include <Util/Images.h>
using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System;
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto bulletImage = Images::FromFile(u"bullets.png");
auto presentationImage = presentation->get_Images()->AddImage(bulletImage);
bulletImage->Dispose();
auto shape = slide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 200, 200, 400, 200);
auto textFrame = shape->get_TextFrame();
textFrame->get_Paragraphs()->Clear();
auto paragraph = MakeObject<Paragraph>();
paragraph->set_Text(u"Welcome to Aspose.Slides");
paragraph->get_ParagraphFormat()->get_Bullet()->set_Type(BulletType::Picture);
paragraph->get_ParagraphFormat()->get_Bullet()->get_Picture()->set_Image(presentationImage);
paragraph->get_ParagraphFormat()->get_Bullet()->set_Height(100);
textFrame->get_Paragraphs()->Add(paragraph);
presentation->Save(u"picture_bullet.pptx", SaveFormat::Pptx);
presentation->Save(u"picture_bullet.ppt", SaveFormat::Ppt);
presentation->Dispose();
ایجاد فهرست چندسطحی
İParagraphFormat::set_Depth را تنظیم کنید تا پاراگرافها در سطوح مختلف فهرست قرار گیرند. سطح بالای فهرست عمق 0 دارد.
- یک Presentation ایجاد کنید و به یک اسلاید دسترسی پیدا کنید.
- یک IAutoShape اضافه کنید و پاراگراف پیشفرض را از فریم متن آن پاک کنید.
- چهار پاراگراف ایجاد کنید و نمادهای نقطه آنها را پیکربندی کنید.
- مقدارهای İParagraphFormat::set_Depth آنها را به ترتیب
0،1،2و3تنظیم کنید. - پاراگرافها را به فریم متن اضافه کنید و ارائه را ذخیره کنید.
این مثال C++ یک فهرست نقطهدار چهار سطحی ایجاد میکند:
#include <DOM/BulletType.h>
#include <DOM/FillType.h>
#include <DOM/IAutoShape.h>
#include <DOM/IParagraphCollection.h>
#include <DOM/Paragraph.h>
#include <DOM/Presentation.h>
#include <DOM/ShapeType.h>
#include <Export/SaveFormat.h>
#include <drawing/color.h>
#include <system/convert.h>
using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System;
using namespace System::Drawing;
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto shape = slide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 200, 200, 400, 200);
auto textFrame = shape->get_TextFrame();
textFrame->get_Paragraphs()->Clear();
auto firstParagraph = MakeObject<Paragraph>();
firstParagraph->set_Text(u"Content");
firstParagraph->get_ParagraphFormat()->get_Bullet()->set_Type(BulletType::Symbol);
firstParagraph->get_ParagraphFormat()->get_Bullet()->set_Char(Convert::ToChar(0x2022));
firstParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->set_FillType(FillType::Solid);
firstParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Black());
firstParagraph->get_ParagraphFormat()->set_Depth(0);
auto secondParagraph = MakeObject<Paragraph>();
secondParagraph->set_Text(u"Second level");
secondParagraph->get_ParagraphFormat()->get_Bullet()->set_Type(BulletType::Symbol);
secondParagraph->get_ParagraphFormat()->get_Bullet()->set_Char(u'-');
secondParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->set_FillType(FillType::Solid);
secondParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Black());
secondParagraph->get_ParagraphFormat()->set_Depth(1);
auto thirdParagraph = MakeObject<Paragraph>();
thirdParagraph->set_Text(u"Third level");
thirdParagraph->get_ParagraphFormat()->get_Bullet()->set_Type(BulletType::Symbol);
thirdParagraph->get_ParagraphFormat()->get_Bullet()->set_Char(Convert::ToChar(0x2022));
thirdParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->set_FillType(FillType::Solid);
thirdParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Black());
thirdParagraph->get_ParagraphFormat()->set_Depth(2);
auto fourthParagraph = MakeObject<Paragraph>();
fourthParagraph->set_Text(u"Fourth level");
fourthParagraph->get_ParagraphFormat()->get_Bullet()->set_Type(BulletType::Symbol);
fourthParagraph->get_ParagraphFormat()->get_Bullet()->set_Char(u'-');
fourthParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->set_FillType(FillType::Solid);
fourthParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Black());
fourthParagraph->get_ParagraphFormat()->set_Depth(3);
textFrame->get_Paragraphs()->Add(firstParagraph);
textFrame->get_Paragraphs()->Add(secondParagraph);
textFrame->get_Paragraphs()->Add(thirdParagraph);
textFrame->get_Paragraphs()->Add(fourthParagraph);
presentation->Save(u"multilevel_list.pptx", SaveFormat::Pptx);
presentation->Dispose();
شروع موارد فهرست عددی با مقادیر دلخواه
از IBulletFormat::set_NumberedBulletStartWith برای تنظیم عدد اولیه نمایش دادهشده برای یک پاراگراف عددی استفاده کنید.
- یک Presentation ایجاد کنید و یک IAutoShape به اسلاید اضافه کنید.
- پاراگراف پیشفرض را از فریم متنی شکل حذف کنید.
- سه پاراگراف عددی ایجاد کنید.
- برای پاراگرافهای مربوطه، IBulletFormat::set_NumberedBulletStartWith را به ترتیب به
2،3و7تنظیم کنید. - پاراگرافها را به فریم متن اضافه کنید و ارائه را ذخیره کنید.
این مثال C++ عدد شروع سفارشی را به هر پاراگراف اختصاص میدهد:
#include <DOM/BulletType.h>
#include <DOM/IAutoShape.h>
#include <DOM/IParagraphCollection.h>
#include <DOM/Paragraph.h>
#include <DOM/Presentation.h>
#include <DOM/ShapeType.h>
#include <Export/SaveFormat.h>
using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System;
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto shape = slide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 200, 200, 400, 200);
auto textFrame = shape->get_TextFrame();
textFrame->get_Paragraphs()->Clear();
auto firstParagraph = MakeObject<Paragraph>();
firstParagraph->set_Text(u"Start at 2");
firstParagraph->get_ParagraphFormat()->get_Bullet()->set_Type(BulletType::Numbered);
firstParagraph->get_ParagraphFormat()->get_Bullet()->set_NumberedBulletStartWith(2);
textFrame->get_Paragraphs()->Add(firstParagraph);
auto secondParagraph = MakeObject<Paragraph>();
secondParagraph->set_Text(u"Start at 3");
secondParagraph->get_ParagraphFormat()->get_Bullet()->set_Type(BulletType::Numbered);
secondParagraph->get_ParagraphFormat()->get_Bullet()->set_NumberedBulletStartWith(3);
textFrame->get_Paragraphs()->Add(secondParagraph);
auto thirdParagraph = MakeObject<Paragraph>();
thirdParagraph->set_Text(u"Start at 7");
thirdParagraph->get_ParagraphFormat()->get_Bullet()->set_Type(BulletType::Numbered);
thirdParagraph->get_ParagraphFormat()->get_Bullet()->set_NumberedBulletStartWith(7);
textFrame->get_Paragraphs()->Add(thirdParagraph);
presentation->Save(u"custom_numbered_list.pptx", SaveFormat::Pptx);
presentation->Dispose();
کنترل چیدمان پاراگراف و ویژگیهای انتهایی
تنظیم تورفتگی خط اول
از IParagraphFormat::set_Indent برای کنترل تورفتگی خط اول یک پاراگراف استفاده کنید. این متد فقط خط اول را نسبت به حاشیه سمت چپ پاراگراف جابهجا میکند. مقدار مثبت، خط اول را به راست میبرد، در حالی که خطوط دیگر به بدنه پاراگراف تراز میمانند.
زمانی که نیاز به جابهجایی کل پاراگراف دارید، از IParagraphFormat::set_MarginLeft استفاده کنید. برای جابهجایی فقط خط اول از IParagraphFormat::set_Indent استفاده کنید.
نمونه زیر چند پاراگراف ایجاد میکند و مقادیر متفاوتی از IParagraphFormat::set_Indent را برای نمایش تأثیر تورفتگی خط اول بر چیدمان پاراگراف اعمال میکند.
- یک نمونه از کلاس Presentation ایجاد کنید.
- به اسلاید هدف دسترسی پیدا کنید.
- یک IAutoShape مستطیلی به اسلاید اضافه کنید.
- به ITextFrame شکل دسترسی پیدا کنید و پاراگراف پیشفرض را حذف کنید.
- چند پاراگراف ایجاد کنید و مقادیر مختلفی از IParagraphFormat::set_Indent برای آنها تنظیم کنید.
- پاراگرافها را به فریم متن اضافه کنید.
- ارائهی اصلاحشده را ذخیره کنید.
این کد نشان میدهد چگونه تورفتگی پاراگراف را تنظیم کنید:
#include <DOM/FillType.h>
#include <DOM/IAutoShape.h>
#include <DOM/IParagraphCollection.h>
#include <DOM/Paragraph.h>
#include <DOM/Presentation.h>
#include <DOM/ShapeType.h>
#include <DOM/TextAutofitType.h>
#include <Export/SaveFormat.h>
#include <drawing/color.h>
using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System;
using namespace System::Drawing;
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto shape = slide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 50, 50, 420, 220);
shape->get_FillFormat()->set_FillType(FillType::NoFill);
shape->get_LineFormat()->get_FillFormat()->set_FillType(FillType::Solid);
shape->get_LineFormat()->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Gray());
auto textFrame = shape->get_TextFrame();
textFrame->get_TextFrameFormat()->set_AutofitType(TextAutofitType::Shape);
textFrame->get_Paragraphs()->Clear();
auto firstParagraph = MakeObject<Paragraph>();
firstParagraph->set_Text(u"No first-line indent. Wrapped lines start at the same position as the first line.");
firstParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->set_FillType(FillType::Solid);
firstParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Black());
firstParagraph->get_ParagraphFormat()->set_MarginLeft(20);
firstParagraph->get_ParagraphFormat()->set_Indent(0);
auto secondParagraph = MakeObject<Paragraph>();
secondParagraph->set_Text(u"First-line indent of 20 points. The first line moves to the right, while wrapped lines remain aligned to the paragraph body.");
secondParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->set_FillType(FillType::Solid);
secondParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Black());
secondParagraph->get_ParagraphFormat()->set_MarginLeft(20);
secondParagraph->get_ParagraphFormat()->set_Indent(20);
auto thirdParagraph = MakeObject<Paragraph>();
thirdParagraph->set_Text(u"First-line indent of 40 points. This paragraph shows a larger first-line offset to make the effect easier to see.");
thirdParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->set_FillType(FillType::Solid);
thirdParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Black());
thirdParagraph->get_ParagraphFormat()->set_MarginLeft(20);
thirdParagraph->get_ParagraphFormat()->set_Indent(40);
textFrame->get_Paragraphs()->Add(firstParagraph);
textFrame->get_Paragraphs()->Add(secondParagraph);
textFrame->get_Paragraphs()->Add(thirdParagraph);
presentation->Save(u"paragraph_indent.pptx", SaveFormat::Pptx);
presentation->Dispose();
نتیجه:

تنظیم تورفتگی معلق
یک تورفتگی معلق به معنای چیدمان پاراگرافی است که در آن خط اول سمت چپ خطوط باقیمانده قرار میگیرد. در Aspose.Slides این اثر را با IParagraphFormat::set_Indent ایجاد میکنید. برای جابهجایی خط اول به سمت چپ مقدار منفی تنظیم کنید.
در عمل، IParagraphFormat::set_MarginLeft موقعیت سمت چپ بدنه پاراگراف را تعریف میکند و IParagraphFormat::set_Indent موقعیت خط اول نسبت به آن حاشیه را تعیین میکند. برای ایجاد تورفتگی معلق، مقدار مثبت margin‑left و مقدار منفی indent تنظیم کنید.
این قالببندی برای کتابشناسیها، مراجع، واژهنامهها و سایر پاراگرافهایی که خطوط بستهشده باید زیر بدنه پاراگراف تراز شوند، مفید است.
- یک نمونه از کلاس Presentation ایجاد کنید.
- به اسلاید هدف دسترسی پیدا کنید.
- یک IAutoShape مستطیلی به اسلاید اضافه کنید.
- به ITextFrame شکل دسترسی پیدا کنید و پاراگراف پیشفرض را حذف کنید.
- پاراگرافها را ایجاد کنید و برای هر پاراگراف مقدار مثبت IParagraphFormat::set_MarginLeft تنظیم کنید.
- برای ایجاد اثر تورفتگی معلق، مقدار منفی IParagraphFormat::set_Indent تنظیم کنید.
- پاراگرافها را به فریم متن اضافه کنید.
- ارائهی اصلاحشده را ذخیره کنید.
این کد نشان میدهد چگونه تورفتگی معلق را برای یک پاراگراف تنظیم کنید:
#include <DOM/FillType.h>
#include <DOM/IAutoShape.h>
#include <DOM/IParagraphCollection.h>
#include <DOM/Paragraph.h>
#include <DOM/Presentation.h>
#include <DOM/ShapeType.h>
#include <DOM/TextAutofitType.h>
#include <Export/SaveFormat.h>
#include <drawing/color.h>
using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System;
using namespace System::Drawing;
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto shape = slide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 50, 50, 420, 220);
shape->get_FillFormat()->set_FillType(FillType::NoFill);
shape->get_LineFormat()->get_FillFormat()->set_FillType(FillType::Solid);
shape->get_LineFormat()->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Gray());
auto textFrame = shape->get_TextFrame();
textFrame->get_TextFrameFormat()->set_AutofitType(TextAutofitType::Shape);
textFrame->get_Paragraphs()->Clear();
auto firstParagraph = MakeObject<Paragraph>();
firstParagraph->set_Text(u"A hanging indent is created by combining a positive left margin with a negative indent. The first line starts to the left, while wrapped lines align with the paragraph body.");
firstParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->set_FillType(FillType::Solid);
firstParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Black());
firstParagraph->get_ParagraphFormat()->set_MarginLeft(40);
firstParagraph->get_ParagraphFormat()->set_Indent(-20);
auto secondParagraph = MakeObject<Paragraph>();
secondParagraph->set_Text(u"This second example uses a deeper hanging indent so the difference between the first line and the wrapped lines is easier to compare.");
secondParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->set_FillType(FillType::Solid);
secondParagraph->get_ParagraphFormat()->get_DefaultPortionFormat()->get_FillFormat()->get_SolidFillColor()->set_Color(Color::get_Black());
secondParagraph->get_ParagraphFormat()->set_MarginLeft(60);
secondParagraph->get_ParagraphFormat()->set_Indent(-30);
textFrame->get_Paragraphs()->Add(firstParagraph);
textFrame->get_Paragraphs()->Add(secondParagraph);
presentation->Save(u"hhanging_indent.pptx", SaveFormat::Pptx);
presentation->Dispose();
نتیجه:

تنظیم ویژگیهای اجرای انتهای پاراگراف
IParagraph::set_EndParagraphPortionFormat قالببندی علامت پایان پاراگراف را کنترل میکند. مثال زیر اندازه فونت و فونت لاتین را برای علامت پایان پاراگراف دوم تعیین میکند:
- یک Presentation بارگذاری کنید و به یک اسلاید دسترسی پیدا کنید.
- یک IAutoShape اضافه کنید و پاراگراف پیشفرض آن را پاک کنید.
- دو پاراگراف ایجاد کنید و به آنها بخشهای متنی اضافه کنید.
- یک PortionFormat برای علامت پایان پاراگراف دوم ایجاد کنید.
- IBasePortionFormat::set_FontHeight و IBasePortionFormat::set_LatinFont را تنظیم کنید.
- قالب را با IParagraph::set_EndParagraphPortionFormat اختصاص دهید و ارائه را ذخیره کنید.
#include <DOM/Fonts/FontData.h>
#include <DOM/IAutoShape.h>
#include <DOM/IParagraphCollection.h>
#include <DOM/IPortionCollection.h>
#include <DOM/Paragraph.h>
#include <DOM/Portion.h>
#include <DOM/PortionFormat.h>
#include <DOM/Presentation.h>
#include <DOM/ShapeType.h>
#include <Export/SaveFormat.h>
using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System;
auto presentation = MakeObject<Presentation>(u"Test.pptx");
auto slide = presentation->get_Slide(0);
auto shape = slide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 10, 10, 200, 250);
auto textFrame = shape->get_TextFrame();
textFrame->get_Paragraphs()->Clear();
auto firstParagraph = MakeObject<Paragraph>();
firstParagraph->get_Portions()->Add(MakeObject<Portion>(u"Sample text"));
auto secondParagraph = MakeObject<Paragraph>();
secondParagraph->get_Portions()->Add(MakeObject<Portion>(u"Sample text 2"));
auto endParagraphFormat = MakeObject<PortionFormat>();
endParagraphFormat->set_FontHeight(48);
endParagraphFormat->set_LatinFont(MakeObject<FontData>(u"Times New Roman"));
secondParagraph->set_EndParagraphPortionFormat(endParagraphFormat);
textFrame->get_Paragraphs()->Add(firstParagraph);
textFrame->get_Paragraphs()->Add(secondParagraph);
presentation->Save(u"end_paragraph_format.pptx", SaveFormat::Pptx);
presentation->Dispose();
واردات و صادرات محتوای پاراگراف
وارد کردن متن HTML به پاراگرافها
از IParagraphCollection::AddFromHtml برای تبدیل نشانهگذاری HTML به پاراگرافها و بخشها در یک فریم متنی استفاده کنید.
- یک نمونه از کلاس Presentation ایجاد کنید.
- به یک اسلاید دسترسی پیدا کنید و یک IAutoShape اضافه کنید.
- به ITextFrame شکل دسترسی پیدا کنید و پاراگراف پیشفرض را پاک کنید.
- فایل HTML منبع را بخوانید.
- رشته HTML را به IParagraphCollection::AddFromHtml پاس دهید.
- ارائهی اصلاحشده را ذخیره کنید.
این مثال C++ HTML را به یک فریم متنی وارد میکند:
#include <DOM/FillType.h>
#include <DOM/IAutoShape.h>
#include <DOM/IParagraphCollection.h>
#include <DOM/ISlideSize.h>
#include <DOM/Presentation.h>
#include <DOM/ShapeType.h>
#include <Export/SaveFormat.h>
#include <system/io/stream_reader.h>
using namespace Aspose::Slides;
using namespace Aspose::Slides::Export;
using namespace System;
using namespace System::IO;
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto slideSize = presentation->get_SlideSize()->get_Size();
auto shape = slide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 10, 10, slideSize.get_Width() - 20, slideSize.get_Height() - 20);
shape->get_FillFormat()->set_FillType(FillType::NoFill);
shape->get_TextFrame()->get_Paragraphs()->Clear();
auto reader = MakeObject<StreamReader>(u"file.html");
auto html = reader->ReadToEnd();
reader->Close();
shape->get_TextFrame()->get_Paragraphs()->AddFromHtml(html);
presentation->Save(u"html_text.pptx", SaveFormat::Pptx);
presentation->Dispose();
صادرکردن متن پاراگراف به HTML
از IParagraphCollection::ExportToHtml برای صدور یک بازهی انتخابی از پاراگرافها به صورت HTML استفاده کنید.
- یک نمونه از کلاس Presentation ایجاد کنید و ارائهی موردنظر را بارگذاری کنید.
- به اسلاید دسترسی پیدا کنید و IAutoShape که حاوی متن است را پیدا کنید.
- به ITextFrame شکل دسترسی پیدا کنید.
- متد IParagraphCollection::ExportToHtml را با اندیس پاراگراف شروع و تعداد پاراگرافهای موردنظر صدا بزنید.
- رشته HTML بازگشتی را در فایلی بنویسید.
این مثال C++ تمام پاراگرافهای اولین شکل متنی را صادر میکند:
#include <DOM/IAutoShape.h>
#include <DOM/IParagraphCollection.h>
#include <DOM/Presentation.h>
#include <system/console.h>
#include <system/io/stream_writer.h>
#include <system/object_ext.h>
#include <system/text/encoding.h>
using namespace Aspose::Slides;
using namespace System;
using namespace System::IO;
using namespace System::Text;
auto presentation = MakeObject<Presentation>(u"ExportingHTMLText.pptx");
auto shape = presentation->get_Slide(0)->get_Shape(0);
auto textShape = AsCast<IAutoShape>(shape);
if (textShape != nullptr && textShape->get_TextFrame() != nullptr)
{
auto paragraphs = textShape->get_TextFrame()->get_Paragraphs();
auto html = paragraphs->ExportToHtml(0, paragraphs->get_Count(), nullptr);
auto writer = MakeObject<StreamWriter>(u"paragraphs.html", false, Encoding::get_UTF8());
writer->Write(html);
writer->Close();
}
else
{
Console::WriteLine(u"The first shape is not a text shape.");
}
presentation->Dispose();
رندر کردن پاراگراف به عنوان تصویر
IParagraph::GetImage یک پاراگراف منفرد را مستقیماً رندر میکند و یک IImage بازمیگرداند. میتوانید نتیجه را با IImage::Save در فایل یا جریان ذخیره کنید. نیازی به رندر شکل حاوی آن یا برش بیتمپ دستی نیست.
IParagraph::GetImage ممکن است nullptr برگرداند اگر پاراگراف در مجموعه والد موجود نباشد، مرزهای رندر معتبری نداشته باشد یا قابل رندر نباشد. قبل از ذخیرهسازی نتیجه را بررسی کنید و پس از استفاده تصویر بازگرداندهشده را آزاد کنید.
رندر کردن پاراگراف در مقیاس پیشفرض
فرض کنید فایلی به نام sample.pptx داریم که شامل یک اسلاید است و اولین شکل آن یک جعبه متن حاوی سه پاراگراف است.

مثال زیر پاراگراف دوم را در یک شکل متنی عادی در مقیاس پیشفرض رندر میکند و تصویر بازگشتی را در قالب PNG ذخیره مینماید.
#include <DOM/IAutoShape.h>
#include <DOM/IParagraph.h>
#include <DOM/Presentation.h>
#include <IImage.h>
#include <ImageFormat.h>
#include <system/console.h>
#include <system/object_ext.h>
using namespace Aspose::Slides;
using namespace System;
auto presentation = MakeObject<Presentation>(u"sample.pptx");
auto shape = presentation->get_Slide(0)->get_Shape(0);
auto textShape = AsCast<IAutoShape>(shape);
if (textShape != nullptr && textShape->get_TextFrame() != nullptr && textShape->get_TextFrame()->get_Paragraphs()->get_Count() > 1)
{
auto paragraph = textShape->get_TextFrame()->get_Paragraph(1);
auto paragraphImage = paragraph->GetImage();
if (paragraphImage != nullptr)
{
paragraphImage->Save(u"paragraph.png", ImageFormat::Png);
paragraphImage->Dispose();
}
else
{
Console::WriteLine(u"The paragraph could not be rendered.");
}
}
else
{
Console::WriteLine(u"The expected text shape or paragraph was not found.");
}
presentation->Dispose();
نتیجه:

رندر کردن پاراگراف در یک سلول جدول با مقیاسبندی
از نسخهی overload متد IParagraph::GetImage که پارامترهای float scaleX و float scaleY را میپذیرد برای تنظیم ضریبهای افقی و عمودی استفاده کنید. مثال زیر یک جدول ایجاد میکند، پاراگراف را در اولین سلول آن با عرض و ارتفاع دو برابر پیشفرض رندر میکند و نتیجه را بهصورت تصویر PNG ذخیره مینماید.
#include <DOM/IParagraph.h>
#include <DOM/Presentation.h>
#include <DOM/Table/ITable.h>
#include <IImage.h>
#include <ImageFormat.h>
#include <system/array.h>
#include <system/console.h>
using namespace Aspose::Slides;
using namespace System;
auto scaleX = 2.0f;
auto scaleY = 2.0f;
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto table = slide->get_Shapes()->AddTable(50, 50, MakeArray<double>({300}), MakeArray<double>({80}));
auto paragraph = table->idx_get(0, 0)->get_TextFrame()->get_Paragraph(0);
paragraph->set_Text(u"Text in a table cell");
auto paragraphImage = paragraph->GetImage(scaleX, scaleY);
if (paragraphImage != nullptr)
{
paragraphImage->Save(u"table_paragraph.png", ImageFormat::Png);
paragraphImage->Dispose();
}
else
{
Console::WriteLine(u"The paragraph could not be rendered.");
}
presentation->Dispose();
ضریب مقیاس 1 اندازهی píxel پیشفرض را حفظ میکند. بهعنوان مثال، 2 برای هر دو ضریب، تصویر با عرض و ارتفاعی تقریباً دو برابر اندازههای پیشفرض تولید میکند که چهار برابر پیکسل دارد. ضریبهای بزرگتر معمولاً متن واضحتری برای زوم یا خروجی با وضوح بالا تولید میکند، اما مصرف حافظه و اندازه فایل را نیز افزایش میدهد. ضریبهای زیر 1 تصاویر کوچکتر با جزئیات کمتر تولید میکنند. برای حفظ نسبت ابعاد پاراگراف از ضریبهای برابر استفاده کنید؛ ضریبهای متفاوت افقی و عمودی خروجی را بهصورت مستقل کشیده میکند.
رندر کل یک شکل با IShape::GetImage زمانی مفید است که خروجی باید شامل پرکردن، حاشیه یا سایر زمینههای بصری شکل باشد. برای تصویر فقط شامل پاراگراف، از IParagraph::GetImage استفاده کنید.
سوالات متداول
آیا میتوانم بهطور کامل بسته شدن خط داخل فریم متن را غیرفعال کنم؟
بله. از ITextFrameFormat::set_WrapText برای غیرفعال کردن بسته شدن استفاده کنید تا خطوط در لبههای فریم متن شکست نخورند.
چگونه میتوانم مرزهای دقیق یک پاراگراف خاص را روی اسلاید دریافت کنم؟
از IParagraph::GetRect برای دریافت مستطیل محدوده پاراگراف استفاده کنید. IPortion::GetRect مرزهای یک بخش منفرد را فراهم میکند.
محوریت پاراگراف (چپ، راست، وسط یا توزیع) در کجا کنترل میشود؟
IParagraphFormat::set_Alignment یک تنظیم سطح پاراگراف است و بر کل پاراگراف اعمال میشود، صرفنظر از قالببندی بخشهای جداگانه.
آیا میتوانم زبان اصلاحنویسی را برای بخشی از پاراگراف تنظیم کنم؟
بله. از IBasePortionFormat::set_LanguageId برای بخشهای جداگانه استفاده کنید؛ بنابراین یک پاراگراف میتواند متنی با چند زبان مختلف داشته باشد.