Delete
Removes content control and content. If keepContent is true, the content is not deleted.
Parameters:
Name |
Type |
Description |
keepContent |
bool
|
|
Returns:
- Type
-
bool
Example
Copy code
builder.CreateFile("docx");
oDocument = Api.GetDocument();
oParagraph = oDocument.GetElement(0);
oInlineLvlSdt = Api.CreateInlineLvlSdt();
oInlineLvlSdt.AddText("This is an inline text content control.");
oParagraph.AddInlineLvlSdt(oInlineLvlSdt);
oInlineLvlSdt.Delete();
oParagraph.AddText("The inline text content control was removed.");
builder.SaveFile("docx", "Delete.docx");
builder.CloseFile();
Resulting document