英文:
Set PowerPoint grid spacing using JS API
问题
我目前正在为PowerPoint构建Office插件,想要使用Office JavaScript API来设置网格间距。这是否可能?
我查阅了相应的API文档,但未找到任何提示表明目前支持设置网格间距。
英文:
I am currently building an Office Add-in for PowerPoint and would like to set the grid spacing using Office JavaScript API. Is this even possible?
I looked through the corresponding API documentation but could not find any hint indicating that setting grid spacing is currently supported.
答案1
得分: 0
办公室JavaScript API没有提供相关功能。在VBA或COM插件中,您可以使用Presentation.GridDistance属性,该属性设置或返回表示网格线之间距离的单精度值。
您可以在Tech Community上发布或投票支持现有的功能请求,这些请求将在办公室开发团队进行规划时考虑。
英文:
The Office JavaScript API doesn't provide anything for that. In VBA or COM add-ins you may use the Presentation.GridDistance property which sets or returns a single that represents the distance between gridlines.
You can post or vote for an existing feature request on Tech Community where they are considered when the Office dev team goes through the planning process.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论