Hello Aspose Support,
I intended to use custom properties in presentation document. At first I was expecting something similar to "Aspose.Words.Properties.CustomDocumentProperties". However it seems that the document property contains only a handful pre-defined properties, there is no way to add in any new property. While searched in this forum, it seemes customizing presentation properties is possible for Java. Did I miss anything or there could be a workaround somehow?!
Thanks for your help!
FYI, my snippet is as follows.
using (MemoryStream ms = new MemoryStream(contents))
{
Aspose.Slides.Presentation presentation = new Aspose.Slides.Presentation(ms);
Aspose.Slides.DocumentProperties props = presentation.DocumentProperties;
props.Add(propName, propValue); //Not available?
...
}