PDFExportOptions.useLineWeights Property

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

Description

Specifies if line weights should be used in the exported PDF file.

Syntax

"pDFExportOptions_var" is a variable referencing a PDFExportOptions object.
# Get the value of the property.
propertyValue = pDFExportOptions_var.useLineWeights

# Set the value of the property.
pDFExportOptions_var.useLineWeights = propertyValue
"pDFExportOptions_var" Is a variable referencing a PDFExportOptions Object.
#include <Drawing/Drawing/PDFExportOptions.h>

// Get the value of the property.
boolean propertyValue = pDFExportOptions_var->useLineWeights();

// Set the value of the property, where value_var is a boolean.
bool returnValue = pDFExportOptions_var->useLineWeights(value_var);
"pDFExportOptions_var" Is a variable referencing a PDFExportOptions Object.
// Get the value of the property.
propertyValue = pDFExportOptions_var.useLineWeights;

// Set the value of the property.
pDFExportOptions_var.useLineWeights = propertyValue;

Property Value

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

Samples

Name Description
Export PDF Sample Demonstrates how to export a Fusion 360 drawing document to PDF using the DrawingExportManager. Shows how to configure PDFExportOptions including sheet selection (all sheets, a specific range, or the current sheet), line weights, and range-based export.

Version

Introduced in version December 2020