SetTag
Adds a string tag to the current inline text content control.
Parameters:
Name |
Type |
Description |
sTag |
string
|
The tag which will be added to the current inline text content control. |
Returns:
-
This method doesn't return any data.
Example
Copy code
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();
Resulting document