如何使用 google doc api 创建具有水平页面方向的文档
How can I create a document with horizontal page orientation using google doc api
如何使用 google doc api(如果可能,在 python 中)
创建具有水平页面方向(横向)的文档
这个很难。对于子孙后代:
body = {
'title': 'Doc1'
}
doc = service.documents() \
.create(body=body).execute()
file_id = doc.get('documentId')
requests =[
{'updateDocumentStyle':{
"documentStyle":{
'pageSize':{
"height": {
'magnitude': 8.27,
'unit': 'PT'
},
"width": {
'magnitude': 11.69,
'unit': 'PT'
}
}},
"fields": 'pageSize'
}}]
result = service.documents().batchUpdate(
documentId=file_id, body={'requests': requests}).execute()
如何使用 google doc api(如果可能,在 python 中)
创建具有水平页面方向(横向)的文档这个很难。对于子孙后代:
body = {
'title': 'Doc1'
}
doc = service.documents() \
.create(body=body).execute()
file_id = doc.get('documentId')
requests =[
{'updateDocumentStyle':{
"documentStyle":{
'pageSize':{
"height": {
'magnitude': 8.27,
'unit': 'PT'
},
"width": {
'magnitude': 11.69,
'unit': 'PT'
}
}},
"fields": 'pageSize'
}}]
result = service.documents().batchUpdate(
documentId=file_id, body={'requests': requests}).execute()