Skip to main content

SetParagraphHtml

Replaces all content of the specified paragraph with the content parsed from the given HTML string. If the HTML contains multiple block-level elements, their inline content is merged into the target paragraph.

note

This functionality is available in paid ONLYOFFICE Docs editions.

Syntax

expression.SetParagraphHtml(html, paraId);

expression - A variable that represents a Api class.

Parameters

NameRequired/OptionalData typeDefaultDescription
htmlRequiredstringThe HTML string to parse and apply.
paraIdOptionalnumberThe paragraph ID. If not specified, the current paragraph is used.

Returns

This method doesn't return any data.

Example

window.Asc.plugin.executeMethod("SetParagraphHtml", ["<p>Hello <b>World</b></p>"]);