
فهرستگذاری روش عالی برای گروهبندی منطقی اقلام مرتبط است و از آنجا که ما با استفاده از پوشهها برای سازماندهی فایلهای مرتبط آشنا هستیم، بنابراین میتوان رویکرد مشابهی برای استفاده از بخشها برای سازماندهی اسلایدها به گروههای معنادار اختیار کرد. این همچنین به شما این امکان را میدهد که هر همکار را به یک بخش اختصاص دهید تا ownership اسلایدها در حین همکاری مشخص باشد. و اگر با یک صفحه خالی شروع میکنید، میتوانید از بخشها برای ترسیم مروری بر ارائه خود استفاده کنید. معمولاً، بخشها برای استفاده با ارائههای بزرگ طراحی شدهاند که شامل تعداد زیادی اسلاید هستند و میتوانند به راحتی در گروههای منطقی دستهبندی شوند زیرا ارائه شما را راحتتر در دسترس قرار میدهد. علاوه بر این، بخشها میتوانند در پانل ناوبری اسل
قبل از ادامه، ما نیاز داریم تا Aspose.Slides Cloud SDK برای .NET را نصب کنیم و آسانترین راه استفاده از بسته NuGet با استفاده از دستور زیر در کنسول مدیریت بسته است:
Install-Package Aspose.Slides-Cloud -Version 21.2.0
پس از اتمام نصب، مرحله بعدی دریافت اعتبارنامههای احراز هویت است تا بتوانید به راحتی و بهطور ایمن از APIهای ما استفاده کنید. برای جزئیات بیشتر، لطفاً به
- چگونه Aspose.Cloud SDKها را نصب کنیم
- چگونه میتوان توکن JWT را با استفاده از شناسه کلاینت و کلید راز کلاینت دریافت کرد
مدیریت بخشها
Aspose.Slides Cloud ویژگیهایی را فراهم میکند که بتوانید
- قسمتهای موجود در ارائه را دریافت کنید
- تنظیم بخشهای پاورپوینت
- یک بخش جدید ایجاد کنید
- تغییر نام بخش
- قسمت و اسلایدها را به موقعیت دیگری منتقل کنید.
- بخش را حذف کنید
بخشهای موجود ارائه را بگیرید
Request URL
GET https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections?folder=myFolder
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
GetSectionsRequest request = new GetSectionsRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder"
};
Sections sections = api.GetSections(tequest);
Console.WriteLine(sections.SectionList.Count);
تنظیم بخشهای پاورپوینت
Request URL
PUT https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections?folder=myFolder
بدنه درخواست
{ "sectionList": [{ "name": "Section1", "firstSlideIndex": 1 }, { "name": "Section2", "firstSlideIndex": 4 }]}
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
Sections dto = new Sections
{
SectionList = new List<Section>
{
new Section { Name = "Section1", FirstSlideIndex = 1 },
new Section { Name = "Section2", FirstSlideIndex = 4 }
}
};
PutSectionsRequest request = new PutSectionsRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
Sections = dto
};
Sections sections = api.PutSections(request);
Console.WriteLine(sections.SectionList.Count); //2
Console.WriteLine(sections.SectionList[0].SlideList.Count); //3
یک بخش جدید بسازید
Request URL
POST https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections?folder=myFolder§ionName=NewSection&slideIndex=4
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
PostSectionRequest request = new PostSectionRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SectionName = "NewSection",
SlideIndex = 4
};
Sections sections = api.PostSection(request);
Console.WriteLine(sections.SectionList.Count);
تغییر نام بخش
Request URL
PUT https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections/2?folder=myFolder§ionName=UpdatedSection
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
PutSectionRequest request = new PutSectionRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SectionName = "UpdatedSection",
SectionIndex = 2
};
Sections sections = api.PutSection(request);
Console.WriteLine(sections.SectionList[1].Name); //UpdatedSection
قسمت و اسلاید را به موقعیت دیگری منتقل کنید
Request URL
POST https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections/1/move?folder=myFolder&newPosition=2
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
PostSectionMoveRequest request = new PostSectionMoveRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SectionIndex = 1,
NewPosition = 2
};
Sections sections = api.PostSectionMove(request);
Console.WriteLine(sections.SectionList.Count);
یک بخش را حذف کنید
Request URL
DELETE https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections/2?folder=myFolder
C#.NET
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
DeleteSectionRequest request = new DeleteSectionRequest
{
Name = "myPresentaion.pptx",
Folder = "myFolder",
SectionIndex = 2
};
Sections sections = api.DeleteSection(request);
Console.WriteLine(sections.SectionList.Count);