SetLanguage

function SetLanguage(sLangId: string = null): ApiTextPr

Description

Specifies the languages which will be used to check spelling and grammar (if requested) when processing the contents of the text run.

Parameters

sLangIdstringdefault: null

The possible value for this parameter is a language identifier as defined by RFC 4646/BCP 47. Example: "en-CA".

Returns

ApiTextPr

Try It

var oDocument = Api.GetDocument();
var oTextPr = oDocument.GetDefaultTextPr();
oTextPr.SetLanguage("en-CA");
var oParagraph = oDocument.GetElement(0);
var oRun = Api.CreateRun();
oRun.AddText("This is just a sample text. ");
oParagraph.AddElement(oRun);
oRun = Api.CreateRun();
oRun.AddText("This is a text run with the text language set to English (Canada).");
oRun.SetTextPr(oTextPr);
oParagraph.AddElement(oRun);

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).