PPT
PPTX
ODP
POT
ppsx
PPTX
แก้ไขคุณสมบัติ PPTX โดยใช้ C#
สร้างแอป .NET ของคุณเองเพื่อแก้ไขคุณสมบัติในตัวและคุณสมบัติกำหนดเองในไฟล์งานนำเสนอโดยใช้ API ฝั่งเซิร์ฟเวอร์
แก้ไขคุณสมบัติ PPTX ผ่าน C#
เมื่อใช้ Aspose.Slides for .NET นักพัฒนาสามารถเข้าถึงและแก้ไขค่าของคุณสมบัติในตัวรวมถึงคุณสมบัติที่กำหนดเอง นักพัฒนาสามารถใช้คุณสมบัติ DocumentProperties ที่เปิดเผยโดยออบเจกต์การนำเสนอเพื่อเข้าถึงคุณสมบัติเอกสารของไฟล์การนำเสนอ
แก้ไข PPTX คุณสมบัติในตัว - C#
// Instantiate the Presentation class that represents the Presentation
Presentation presentation = new Presentation("presentation.pptx");
// Create a reference to IDocumentProperties object associated with Presentation
IDocumentProperties documentProperties = presentation.DocumentProperties;
// Set the builtin properties
documentProperties.Author = "Aspose.Slides for .NET";
documentProperties.Title = "Modifying Presentation Properties";
documentProperties.Subject = "Aspose Subject";
documentProperties.Comments = "Aspose Description";
documentProperties.Manager = "Aspose Manager";
// Save your presentation to a file
presentation.Save("DocumentProperties_out.pptx", SaveFormat.Pptx);
เพิ่มคุณสมบัติที่กำหนดเองใน PPTX - C#
// Instantiate the Presentation class
Presentation presentation = new Presentation();
// Getting Document Properties
IDocumentProperties documentProperties = presentation.DocumentProperties;
// Adding Custom properties
documentProperties["New Custom"] = 12;
documentProperties["My Name"] = "Aspose Metadata Editor";
documentProperties["Custom"] = 124;
// Getting property name at particular index
String getPropertyName = documentProperties.GetCustomPropertyName(2);
// Removing selected property
documentProperties.RemoveCustomProperty(getPropertyName);
// Save your presentation to a file
presentation.Save("CustomDocumentProperties_out.pptx", SaveFormat.Pptx);
วิธีดึงข้อมูลเมตาของ PPTX ผ่าน C#
นี่คือขั้นตอนในการดึงข้อมูลเมตาจากไฟล์ PPTX
สร้างอินสแตนซ์ของคลาสงานนำเสนอด้วยพาธไปยังไฟล์ PPTX
รับวัตถุ DocumentProperties ที่เกี่ยวข้องกับการนำเสนอ
วนซ้ำรายการในวัตถุ DocumentProperties
เข้าถึงและแก้ไขคุณสมบัติแบบกำหนดเอง