Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/google-apps-script/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google apps script 应用程序脚本列表项-制作项目符号而不是编号?_Google Apps Script_Listitem - Fatal编程技术网

Google apps script 应用程序脚本列表项-制作项目符号而不是编号?

Google apps script 应用程序脚本列表项-制作项目符号而不是编号?,google-apps-script,listitem,Google Apps Script,Listitem,我可以使用appendListItem在应用程序脚本中添加一组项目到google文档中作为编号列表。是否有任何方法可以将其从编号更改为项目符号?您应该能够使用它来选择项目符号列表。这非常有效。如下所示:var doc.appendListItem(任意).setGlyphType(DocumentApp.GlyphType.BULLET);

我可以使用appendListItem在应用程序脚本中添加一组项目到google文档中作为编号列表。是否有任何方法可以将其从编号更改为项目符号?

您应该能够使用它来选择项目符号列表。

这非常有效。如下所示:var doc.appendListItem(任意).setGlyphType(DocumentApp.GlyphType.BULLET);