BRepFace.appearance Property

Parent Object: BRepFace
Defined in namespace "adsk::fusion" and the header file is <Fusion/BRep/BRepFace.h>

Description

Read-write property that gets and sets the current appearance of the face. Setting this property will result in applying an override appearance to the face and the AppearanceSourceType property will return OverrideAppearanceSource. Setting this property to null will remove any override.

Syntax

"bRepFace_var" is a variable referencing a BRepFace object.

# Get the value of the property.
propertyValue = bRepFace_var.appearance

# Set the value of the property.
bRepFace_var.appearance = propertyValue
"bRepFace_var" is a variable referencing a BRepFace object.
#include <Fusion/BRep/BRepFace.h>

// Get the value of the property.
Ptr<Appearance> propertyValue = bRepFace_var->appearance();

// Set the value of the property, where value_var is an Appearance.
bool returnValue = bRepFace_var->appearance(value_var);

Property Value

This is a read/write property whose value is an Appearance.

Version

Introduced in version August 2014