PPT
PPTX
ODP
POT
ppsx
PPT
Redigera egenskaper för PPT med C#
Bygg dina egna .NET-appar för att ändra inbyggda och anpassade egenskaper i presentationsfiler med hjälp av API:er på serversidan.
Ändra PPT-egenskaper via C#
Med hjälp av Aspose.Slides for .NET kan utvecklare komma åt och ändra värdena för inbyggda egenskaper såväl som anpassade egenskaper. Utvecklare kan använda egenskapen DocumentProperties som exponeras av Presentation-objektet för att komma åt presentationsfilens dokumentegenskaper.
Ändra PPT inbyggda egenskaper - C#
// Instantiate the Presentation class that represents the Presentation
Presentation presentation = new Presentation("presentation.ppt");
// 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.ppt", SaveFormat.Ppt);
Lägg till anpassade egenskaper i PPT - 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.ppt", SaveFormat.Ppt);
Hur man extraherar metadata för PPT via C#
Det här är stegen för att extrahera metadata från PPT-filer.
Instantiera presentationsklassen med sökvägen till filen PPT
Hämta DocumentProperties-objekt kopplat till Presentation
Slinga över objekten i DocumentProperties-objektet
Få tillgång till och ändra anpassade egenskaper