这是可能的“自定义函数帮助”添加到谷歌电子表格? 即如果键入= SUM到电子表格单元格,我得到的浮动帮助文本,有没有办法使用自定义功能做到这一点?
在谷歌文档Apps Script是使用JSDoc创建http://en.wikipedia.org/wiki/JSDoc风格(JavaDoc的等)的意见。 因为这里记录https://developers.google.com/apps-script/guide_libraries?hl=en#guidelines
它看起来像在脚本编辑器这些只是工作。 它有添加文件的方式,以便它出现在电子表格中。
此功能是在2014年5月加入,和以前发行2475已被关闭。
在谷歌的文档给出的例子是OK,但你可以做更多的比他们表现出jsdoc信息。
例如:
/**
* Return the time that the referenced cell or range was last changed.
* Initial use shows current time.
*
* @param {Sheet3!B32} reference Cell or range to monitor.
* @returns The time the reference was last changed.
* @customfunction
*/
function lastModified( reference ) {
// Surprise - we don't actually care what has changed!
return( new Date() );
}
我在更多的细节和例子覆盖这个我的博客 。
鉴于有没有这方面的资料,我会假设,这个功能是不可能的。 考虑寻找一个本就问题跟踪现有请求 ,如果没有,做出特色的要求! 我敢肯定,你不希望看到这个谁的唯一。
我发布了一个功能请求。 https://code.google.com/p/google-apps-script-issues/issues/detail?id=2475
文章来源: How to add “custom function help” to a google spreadsheet. - not the script editor