Sheet.orientation 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 orientation of the sheet. This property is not applicable when the sheet has a custom size.

Syntax

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

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

// Get the value of the property.
SheetOrientationTypes propertyValue = sheet_var->orientation();

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

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

Property Value

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

Version

Introduced in version September 2026