How to get tag property using Aspose Slides API

Hi,
Can you please let me know how can I get the following tag property using Aspose Slides API:

https://msdn.microsoft.com/en-us/library/office/ff744235.aspx

Thanks,
Neeraj

Hi Neeraj,

I have observed your requirements and like to share that Aspose.Slides does support managing tags inside presentation. Please try using following sample code to serve the purpose on your end.

public static void TestTag()
{
Presentation pres = new Presentation();
pres.getSlides().get_Item(0).getCustomData().getTags().add(“tag1”, “tag val”);
String tagv = pres.getSlides().get_Item(0).getCustomData().getTags().get_Item(“tag1”);
}

Many Thanks,