Adds a string tag to the current inline text content control.
Name | Type | Description |
sTag | string | The tag which will be added to the current inline text content control. |
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oParagraph = oDocument.GetElement(0); var oInlineLvlSdt = Api.CreateInlineLvlSdt(); oParagraph.AddInlineLvlSdt(oInlineLvlSdt); var oRun = Api.CreateRun(); oRun.AddText("This is an inline text content control with a tag set to it."); oInlineLvlSdt.SetTag("This is a tag"); oInlineLvlSdt.AddElement(oRun, 0); var sTag = oInlineLvlSdt.GetTag(); oParagraph = Api.CreateParagraph(); oParagraph.AddText("Tag: " + sTag); oDocument.Push(oParagraph); builder.SaveFile("docx", "SetTag.docx"); builder.CloseFile();