I am developing an addon for Docs, and need to set some Hebrew text right-to-left. I tried using the setLeftRight function with both 'true' and 'false', but none would set the text the right way.
How can I set the text direction to RTL?
Edit: Sample code:
Code: var cells = [ ["EnglishTitle", "HebrewTitle"], ["Text", ""] ];
var tableStyle = {};
tableStyle[DocumentApp.Attribute.FONT_FAMILY] = DocumentApp.FontFamily.TIMES_NEW_ROMAN;
tableStyle[DocumentApp.Attribute.FONT_SIZE] = 12;
var doc = DocumentApp.getActiveDocument().getBody();
doc.appendTable(cells).setAttributes(tableStyle).getCell(1,1).insertParagraph(0, "HebrewText").setLeftToRight(false);
This code works to set the text right to left:
Note: You need to specify the specific paragraph that you want set right to left, or loop through all paragraphs to set them all that way.
Edit:
As you've mentioned below, there appears to be an issue with the escape character '\n' mucking up the right to left text. I've documented the issue here for review by Google, and hopefully they'll pick it up, but you'll need to star it to see if it gains any traction.
A workaround here is not use the escape character in the the '.insertParagraph()' method. Instead, use that only to insert the paragraph, then use the '.appendText()' method to add the text. For example, this works correctly for everything added in the '.appendText()' method: