RemoveSelection

RemoveSelection()

Removes the current selection.

Parameters:

This method doesn't have any parameters.

Returns:

This method doesn't return any data.

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("Api ONLYOFFICE");
var oRange = oDocument.GetRange(0, 2);
oRange.Select();
oDocument.RemoveSelection();
oParagraph = Api.CreateParagraph();
oParagraph.AddText("The selection from the word 'Api' was removed.");
oDocument.Push(oParagraph);
builder.SaveFile("docx", "RemoveSelection.docx");
builder.CloseFile();

Resulting document