Использование Метод: documents.get Я могу получить документ. Результат структурирован, как описано в Ресурс: документы . Однако мне нужно выделить весь документ и изменить высоту строки на 1,5, но я не могу найти способ сделать это.
var updateObject = {
documentId: documentId,
resource: {
requests: [{
'updateTextStyle': {
'range': {
'startIndex': 1,
'endIndex': 0
},
'textStyle': {
'line-height': 1.5
},
'fields': 'line-height'
}
}],
},
};
docs.documents.batchUpdate(updateObject)
.then(function(res) { // Modified
console.log(res);
}, function(err) {
console.error(err);
});