Office 2010 Content Control support

What is the current projection for support of Content controls in your product. I saw some references to a January 2012 release. Is that still on track?

Thanks.

Hello
Thanks for your request. Using the latest version of Aspose.Words you can get collection of StructuredDocumentTags (Content Controls) using the following code:

// Open document
Document doc = new Document("C:\\Temp\\in.docx");
DocumentBuilder builder = new DocumentBuilder(doc);
// Get all StructuredDocumentTags
Node[] tags = doc.GetChildNodes(NodeType.StructuredDocumentTag, true).ToArray();

Then you can loop through this collection and work with its data. But there is one problem, currently there is no way to get SDT properties (like Title, Tag etc) so there is no way to identify SDT object.
Your request has been linked to the appropriate issue. You will be notified as soon as the feature which allows you to get properties of STD is supported.
Also please follow this link to learn more:
https://reference.aspose.com/words/net/aspose.words.markup/structureddocumenttag/
Best regards,

The issues you have found earlier (filed as WORDSNET-4010) have been fixed in this .NET update and this Java update.

This message was posted using Notification2Forum from Downloads module by aspose.notifier.
(2)