I have a pptx document,After process by Aspose.Slides,It’s NameOfApplication metedata info display as “Aspose.Slides for .NET”,I try to set NameOfApplication as other string value using Aspose.Slides,but it doesn’t work.
- OS Version Info:Windows 10、Windows 11
- .NET Version Info:Net Framework 4.7
- Aspose Version Info:Aspose.Slides for Net 22.12
The demo code:
using (var pptDocument = new Aspose.Slides.Presentation(@"C:\demo.pptx"))
{
pptDocument.DocumentProperties.NameOfApplication = "My Application";
pptDocument.Save(@"C:\output.pptx", SaveFormat.Pptx);
}
The screenshot:
20230102181930.png (22.5 KB)
The demo file:
demo.zip (24.4 KB)
The output file:
output.zip (26.7 KB)