AddInlineLvlSdt

function AddInlineLvlSdt(oSdt: ApiInlineLvlSdt = null): ApiInlineLvlSdt

Description

Adds an inline container.

Parameters

oSdtApiInlineLvlSdtdefault: null

An inline container. If undefined or null, then new class ApiInlineLvlSdt will be created and added to the paragraph.

Returns

ApiInlineLvlSdt

Try It

var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oInlineLvlSdt = Api.CreateInlineLvlSdt();
var oRun = Api.CreateRun();
oRun.AddText("This is an inline text content control.");
oInlineLvlSdt.AddElement(oRun, 0);
oParagraph.AddInlineLvlSdt(oInlineLvlSdt);

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).