SetLanguage

SetLanguage(sLangId) → { ApiTextPr }

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

Parameters:

Name Type Description
sLangId string

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

Returns:

Type
ApiTextPr

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oRun = Api.CreateRun();
oRun.AddText("This is just a sample text. ");
oParagraph.AddElement(oRun);
oRun = Api.CreateRun();
oRun.SetLanguage("en-CA");
oRun.AddText("This is a text run with the text language set to English (Canada).");
oParagraph.AddElement(oRun);
builder.SaveFile("docx", "SetLanguage.docx");
builder.CloseFile();

Resulting document