
Kataloglama, ilgili öğeleri mantıklı bir şekilde gruplandırmanın harika bir yoludur ve ilgili dosyaları organize etmek için klasörlerin kullanımına aşina olduğumuz için, slaytlarınızı anlamlı gruplara organize etmek için bölümler kullanmak da benzer bir yaklaşım olarak tercih edilebilir. Ayrıca, işbirliği sırasında slayt sahipliğini netleştirmek için her meslektaşınıza bir bölüm atama avantajını sağlar. Eğer sıfırdan başlıyorsanız, sunumunuzu tasarlamak için bölümleri kullanabilirsiniz. Genellikle, bölümler, kolayca mantıksal gruplara ayrılabilen çok sayıda slayt içeren büyük sunumlar için kullanılmak üzere tasarlanmıştır, bu da sunumunuzu daha kolay gezilebilir hale getirir. Ayrıca, bölümler slayt navigasyon panosunda daraltılabilir veya genişletilebilir ve
İlerlemeye geçmeden önce, Aspose.Slides Cloud SDK for .NET’i kurmamız gerekiyor ve en kolay yol, paket yöneticisi konsolunda aşağıdaki komutu kullanarak NuGet paketini kurmaktır:
Install-Package Aspose.Slides-Cloud -Version 21.2.0
Kurulum tamamlandığında, bir sonraki adım doğru bir şekilde ve güvenli bir şekilde API’lerimizi kullanabilmeniz için kimlik doğrulama kimlik bilgilerini almak olacaktır. Daha fazla bilgi için lütfen ziyaret edin
- Aspose.Cloud SDK’larını nasıl kurulur
- JWT token nasıl alınır, bir Client ID ve Client Secret anahtarı kullanarak
Bölüm yönetimi
Aspose.Slides Cloud, şunları sağlama yeteneğine sahiptir:
- Mevcut sunum bölümlerini al
- Powerpoint bölümlerini ayarla
- Yeni bir bölüm oluşturun
- Bölüm adını değiştir
- Bölümü ve slaytları başka bir konuma taşıyın.
- Delete a section
Mevcut Sunum Bölümlerini Al
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);
PowerPoint bölümlerini ayarla
Request URL
PUT https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections?folder=myFolder
Request Body
{ "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
Yeni Bir Bölüm Oluştur
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);
Bölüm Adını Değiştir
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
Bölümü ve Slidi diğer Pozisyona Taşıyoruz
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);
Bölümü Sil
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);