PPT
PPTX
ODP
POT
ppsx
PPSX
Edit properti PPSX menggunakan C#
Bangun aplikasi .NET Anda sendiri untuk mengubah properti Bawaan dan Kustom dalam file presentasi menggunakan API sisi server.
Ubah Properti PPSX melalui C#
Dengan menggunakan Aspose.Slides for .NET, developer dapat mengakses dan mengubah nilai properti bawaan serta properti kustom. Pengembang dapat menggunakan properti DocumentProperties yang diekspos oleh objek Presentasi untuk mengakses properti dokumen dari file presentasi.
Modifikasi PPSX Properti Bawaan - C#
// Instantiate the Presentation class that represents the Presentation
Presentation presentation = new Presentation("presentation.ppsx");
// 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.ppsx", SaveFormat.Ppsx);
Tambahkan Properti Kustom ke PPSX - 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.ppsx", SaveFormat.Ppsx);
Cara Mengekstrak Metadata PPSX melalui C#
Ini adalah langkah-langkah untuk Mengekstrak Metadata dari file PPSX.
Buat instance kelas Presentasi dengan jalur ke file PPSX
Dapatkan objek DocumentProperties yang terkait dengan Presentasi
Ulangi item dalam objek DocumentProperties
Akses dan ubah properti khusus