RectangularPatternFeature.inputEntities Property

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

Description

Gets and sets the entities to pattern using an ObjectCollection. The collection can contain BRepFace, PartFeature, BRepBody, or Occurrence objects. All of the entities provided must be the same type. For example, it must contain only bodies and can't contain both bodies and faces.

ConstructionPoint, ConstructionAxis, and ConstructionPlane objects can also be patterned. When patterning any construction goemetry, only one entity can be patterned at a time, so the ObjectCollection will always contain a single entity

To use this property, you need to position the timeline marker to immediately before this feature. This can be accomplished using the following code: thisFeature.timelineObject.rollTo(True)

Syntax

"rectangularPatternFeature_var" is a variable referencing a RectangularPatternFeature object.

# Get the value of the property.
propertyValue = rectangularPatternFeature_var.inputEntities

# Set the value of the property.
rectangularPatternFeature_var.inputEntities = propertyValue
"rectangularPatternFeature_var" is a variable referencing a RectangularPatternFeature object.
#include <Fusion/Features/RectangularPatternFeature.h>

// Get the value of the property.
Ptr<ObjectCollection> propertyValue = rectangularPatternFeature_var->inputEntities();

// Set the value of the property, where value_var is an ObjectCollection.
bool returnValue = rectangularPatternFeature_var->inputEntities(value_var);

Property Value

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

Version

Introduced in version November 2014