Sheet.copy Method

Parent Object: Sheet

PreviewThis functionality is provided as a preview of intended future API capabilities. You are encouraged to use it and report any problems or suggestions using the Fusion API and Scripts forum.

Because this is a preview of future functionality, there is the possibility that it will change, which will possibly break any existing programs that use this functionality. Because of that, you should never deliver any programs that use any preview capabilities. For a distributed program, you should wait until it has moved from preview to released state.


Defined in namespace "adsk::drawing" and the header file is <Drawing/Sheet/Sheet.h>

Description

Creates a copy of this sheet and inserts it into the drawing.

Syntax

"sheet_var" is a variable referencing a Sheet object.

# Uses no optional arguments.
returnValue = sheet_var.copy()

# Uses optional arguments.
returnValue = sheet_var.copy(name, before)
"sheet_var" is a variable referencing a Sheet object.

#include <Drawing/Sheet/Sheet.h>

// Uses no optional arguments.
returnValue = sheet_var->copy();

// Uses optional arguments.
returnValue = sheet_var->copy(name, before);
"sheet_var" is a variable referencing a Sheet object.

// Uses no optional arguments.
returnValue = sheet_var.copy();

// Uses Optional arguments.
returnValue = sheet_var.copy(name, before);

Return Value

Type Description
Sheet Returns the newly created sheet once available, or null if the operation failed or while the drawing is still updating asynchronously.

Parameters

Name Type Description
name string The name for the copied sheet. If empty, a default name is assigned.

This is an optional argument whose default value is "".
before boolean If true, the copy is inserted before this sheet; otherwise it is inserted after. Defaults to false.

This is an optional argument whose default value is False.

Version

Introduced in version September 2026