Setting Text Direction in Google Scripts

2.1k Views Asked by At

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);
1

There are 1 best solutions below

4
On BEST ANSWER

This code works to set the text right to left:

function setRightToLeft() {
 var doc = DocumentApp.getActiveDocument();
 var body = doc.getBody();
 var par = body.getParagraphs();
 par[0].setLeftToRight(false);
}

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:

function table(){
  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, "Top line not moved. \nText Should Be Right to left, but it's not, \nThis text is correctly on the right.").setLeftToRight(false).appendText('\nThis is the appended text,\ncorrectly set right to left.');
}