PPT
PPTX
ODP
POT
ppsx
FODP
แก้ไขคุณสมบัติ FODP โดยใช้ C#
สร้างแอป .NET ของคุณเองเพื่อแก้ไขคุณสมบัติในตัวและคุณสมบัติกำหนดเองในไฟล์งานนำเสนอโดยใช้ API ฝั่งเซิร์ฟเวอร์
แก้ไขคุณสมบัติ FODP ผ่าน C#
เมื่อใช้ Aspose.Slides for .NET นักพัฒนาสามารถเข้าถึงและแก้ไขค่าของคุณสมบัติในตัวรวมถึงคุณสมบัติที่กำหนดเอง นักพัฒนาสามารถใช้คุณสมบัติ DocumentProperties ที่เปิดเผยโดยออบเจกต์การนำเสนอเพื่อเข้าถึงคุณสมบัติเอกสารของไฟล์การนำเสนอ
แก้ไข FODP คุณสมบัติในตัว - C#
// Instantiate the Presentation class that represents the Presentation
Presentation presentation = new Presentation("presentation.fodp");
// 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.fodp", SaveFormat.Fodp);
เพิ่มคุณสมบัติที่กำหนดเองใน FODP - 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.fodp", SaveFormat.Fodp);
วิธีดึงข้อมูลเมตาของ FODP ผ่าน C#
นี่คือขั้นตอนในการดึงข้อมูลเมตาจากไฟล์ FODP
สร้างอินสแตนซ์ของคลาสงานนำเสนอด้วยพาธไปยังไฟล์ FODP
รับวัตถุ DocumentProperties ที่เกี่ยวข้องกับการนำเสนอ
วนซ้ำรายการในวัตถุ DocumentProperties
เข้าถึงและแก้ไขคุณสมบัติแบบกำหนดเอง