PPT PPTX ODP POT ppsx
Aspose.Slides  for .NET
OTP

แก้ไขคุณสมบัติ OTP โดยใช้ C#

สร้างแอป .NET ของคุณเองเพื่อแก้ไขคุณสมบัติในตัวและคุณสมบัติกำหนดเองในไฟล์งานนำเสนอโดยใช้ API ฝั่งเซิร์ฟเวอร์

แก้ไขคุณสมบัติ OTP ผ่าน C#

เมื่อใช้ Aspose.Slides for .NET นักพัฒนาสามารถเข้าถึงและแก้ไขค่าของคุณสมบัติในตัวรวมถึงคุณสมบัติที่กำหนดเอง นักพัฒนาสามารถใช้คุณสมบัติ DocumentProperties ที่เปิดเผยโดยออบเจกต์การนำเสนอเพื่อเข้าถึงคุณสมบัติเอกสารของไฟล์การนำเสนอ

แก้ไข OTP คุณสมบัติในตัว - C#


// Instantiate the Presentation class that represents the Presentation
Presentation presentation = new Presentation("presentation.otp");

// 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.otp", SaveFormat.Otp);

เพิ่มคุณสมบัติที่กำหนดเองใน OTP - 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.otp", SaveFormat.Otp);

วิธีดึงข้อมูลเมตาของ OTP ผ่าน C#

นี่คือขั้นตอนในการดึงข้อมูลเมตาจากไฟล์ OTP

  1. สร้างอินสแตนซ์ของคลาสงานนำเสนอด้วยพาธไปยังไฟล์ OTP

  2. รับวัตถุ DocumentProperties ที่เกี่ยวข้องกับการนำเสนอ

  3. วนซ้ำรายการในวัตถุ DocumentProperties

  4. เข้าถึงและแก้ไขคุณสมบัติแบบกำหนดเอง

รูปแบบ Metadata อื่นๆ ที่รองรับ

เมื่อใช้ C# คุณยังสามารถจัดการข้อมูลเมตาของรูปแบบอื่นๆ ได้อีกมากมาย เช่น