SetTag
Add 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. |
Example
Copy code
builder.CreateFile("docx");
oDocument = Api.GetDocument();
oParagraph = oDocument.GetElement(0);
oInlineLvlSdt = Api.CreateInlineLvlSdt();
oParagraph.AddInlineLvlSdt(oInlineLvlSdt);
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);
builder.SaveFile("docx", "SetTag.docx");
builder.CloseFile();
Resulting document