Google 文档 api 插入分栏符

Google docs api insert column break

如何使用 google docs api v1 插入分栏符?有 insertPageBreakinsertSectionBreak 之类的方法,但没有用于分栏的方法。

很遗憾,您想要的无法实现。

更新 Google 文档时,唯一的选项确实只有插入分页符或分节符的选项。

但是,ParagraphElement 包含一个 ColumnBreak 元素。因此,在使用以下请求创建文档时,您可以直接指定要放置 ColumnBreak

的位置

请求

POST https://docs.googleapis.com/v1/documents

正文

"paragraph": {
    "elements": [{
        "startIndex": start_index,
        "endIndex": end_index,
        "columnBreak": {
            "textStyle": {}
        }
    }]
}

在这种情况下,您可以在 Google 的问题跟踪器 here 上提交请求并提供所有必要的详细信息。

参考