CornerClosureFeatureInput.overlap Property

Parent Object: CornerClosureFeatureInput

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::fusion" and the header file is <Fusion/SheetMetal/CornerClosureFeatureInput.h>

Description

Gets and sets the overlap percentage when using an overlap alignment type. This is only used when the alignment type is set to overlap (alignmentType is OverlapCornerClosureAlignmentType) and is ignored for symmetric gap alignment type. The ValueInput can be defines a unitless value between 0 and 1 where 0 is no overlap and 1 is 100% overlap. This can be a real value or a string that evaluates to a unitless real value. A parameter will be created that uses the string as its expression.

Syntax

"cornerClosureFeatureInput_var" is a variable referencing a CornerClosureFeatureInput object.
# Get the value of the property.
propertyValue = cornerClosureFeatureInput_var.overlap

# Set the value of the property.
cornerClosureFeatureInput_var.overlap = propertyValue
"cornerClosureFeatureInput_var" Is a variable referencing a CornerClosureFeatureInput Object.
#include <Fusion/SheetMetal/CornerClosureFeatureInput.h>

// Get the value of the property.
Ptr<ValueInput> propertyValue = cornerClosureFeatureInput_var->overlap();

// Set the value of the property, where value_var is a ValueInput.
bool returnValue = cornerClosureFeatureInput_var->overlap(value_var);
"cornerClosureFeatureInput_var" Is a variable referencing a CornerClosureFeatureInput Object.
// Get the value of the property.
propertyValue = cornerClosureFeatureInput_var.overlap;

// Set the value of the property.
cornerClosureFeatureInput_var.overlap = propertyValue;

Property Value

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

Version

Introduced in version July 2026