I am experimenting with the new capabilities of Aspose.Words 10.8 regarding structured document tags and I cannot figure out how I could generate the attached word document using the DocumentBuilder object. All I did so far is make the following code work:
var db = new Aspose.Words.DocumentBuilder();
db.StartTable();
db.InsertCell();
var sdt = new StructuredDocumentTag(db.Document, SdtType.PlainText, MarkupLevel.Inline);
db.InsertNode(sdt);
db.EndRow();
db.EndTable();
db.Document.Save("c:\\temp\\sdt.docx", Aspose.Words.SaveFormat.Docx);
But I cannot use different SdtTypes or MarkupLevels. Can you provide examples?