Removes the current selection.
This method doesn't have any parameters.
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();