Sheet.sheetSize Property

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

Gets and sets the sheet size. This defaults to A3ISOSheetSize. Check the drawing standard via the standard property before setting — ISO sizes (A0–A4) are only applicable when the standard is ISO, and ASME sizes (A–E) are only applicable when the standard is ASME. Setting a size that does not match the active standard will have no effect. To apply a custom sheet size, set customSize; CustomSizeSheetSize cannot be assigned here.

Syntax

"sheet_var" is a variable referencing a Sheet object.
# Get the value of the property.
propertyValue = sheet_var.sheetSize

# Set the value of the property.
sheet_var.sheetSize = propertyValue
"sheet_var" Is a variable referencing a Sheet Object.
#include <Drawing/Sheet/Sheet.h>

// Get the value of the property.
SheetSizes propertyValue = sheet_var->sheetSize();

// Set the value of the property, where value_var is a SheetSizes.
bool returnValue = sheet_var->sheetSize(value_var);
"sheet_var" Is a variable referencing a Sheet Object.
// Get the value of the property.
propertyValue = sheet_var.sheetSize;

// Set the value of the property.
sheet_var.sheetSize = propertyValue;

Property Value

This is a read/write property whose value is a SheetSizes.

Version

Introduced in version September 2026