SVGImportOptions.isVerticalFlip Property

Parent Object: SVGImportOptions
Defined in namespace "adsk::core" and the header file is <Core/Application/SVGImportOptions.h>

Description

Gets and sets if the SVG is flipped along the sketch Y axis. This property defaults to false in a newly created SVGImportOptions object.

Syntax

"sVGImportOptions_var" is a variable referencing a SVGImportOptions object.

# Get the value of the property.
propertyValue = sVGImportOptions_var.isVerticalFlip

# Set the value of the property.
sVGImportOptions_var.isVerticalFlip = propertyValue
"sVGImportOptions_var" is a variable referencing a SVGImportOptions object.
#include <Core/Application/SVGImportOptions.h>

// Get the value of the property.
boolean propertyValue = sVGImportOptions_var->isVerticalFlip();

// Set the value of the property, where value_var is a boolean.
bool returnValue = sVGImportOptions_var->isVerticalFlip(value_var);

Property Value

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

Version

Introduced in version October 2022