I'm trying to create an IPTC profile using code like this:
Code: Select all
IptcProfile iptc = new IptcProfile();
iptc.SetValue(IptcTag.Keyword, "First");
iptc.SetValue(IptcTag.Keyword, "Second");
But multiple use of tags is common and seems to be allowed in the specification. Do I have any way of doing what I want here?
Thanks
Alan