I have a Custom Function working in Google Sheets - However, the function has a number of optional parameters - In the help I would like to split the description of any optional parameters so they appear on multiple lines - is it possible?
This function is to be used by colleagues - the optional parameters need a clear description - it would be really helpful to split the supporting comments which appear on sheets during entry over multiple lines.
This is the customfunction text I have today.
/**
* Creates a section of random text based on parameters entered.
*
* @param {number} len The total number paragraphs to return.
* @param {number} size Average size of paragraphs (0 - Short > 3 - v.Long).
* @param {string} optional TEXT I WOULD LIKE TO RETURN OVER MULTIPLE LINES:
* LINE 1
* LINE 2
* LINE 3
* @return an array of random letters
* @customfunction
*/
function HelpMePlease(len, size, optional) {
NOTE: I am not looking to Comment the Code here > It is the comments for a CustomFunction > The text I need will appear in sheets when the user is using the function.