I'm trying to indent a paragraph with Google Apps Script - just a normal indent. It should be the easiest thing in the world but is proving to be extremely frustrating.
The below is the relevant section of the code I'm calling, and keep in mind everything else I'm doing (underlining, setting bold etc) is working perfectly.
function AppendDocument(){
var doc = DocumentApp.openById('____________________');
var body = doc.getBody();
var myParagraph = body.appendParagraph("Hello This is a paragraph - I want to indent this please");
myParagraph.setUnderline(true); //<-- Things like this work fine
myParagraph.setIndentStart(72.0); //I just randomly chose 72. No number is working.
}