Availability
This routine is available starting with Power Scripts 4.5.8.
Syntax
copyBoard(board)
Description
Create a copy of the provided board.Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
board | string | Yes | The name or the id of the board to be copied. |
Return type
boolean
True if the board was successfully copied.
Example
boolean isCopied = copyBoard("DEMO");
Result: The result will create a copy of "DEMO" board named "Copy of DEMO" and isCopied will return true.