BRepEdge.entityToken Property

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

Description

Returns a token for the BRepEdge object. This can be saved and used at a later time with the Design.findEntityByToken method to get back the same edge.

When using entity tokens it's important to understand that the token string returned for a specific entity can be different over time. However, even if you have two different token strings that were obtained from the same entity, when you use findEntityByToken they will both return the same entity. Because of that you should never compare entity tokens as way to determine what the token represents. Instead, you need to use the findEntityByToken method to get the two entities identified by the tokens and then compare them.

This is only valid for edges that exist in the design, (the isTemporary property is false).

Syntax

"bRepEdge_var" is a variable referencing a BRepEdge object.

# Get the value of the property.
propertyValue = bRepEdge_var.entityToken
"bRepEdge_var" is a variable referencing a BRepEdge object.
#include <Fusion/BRep/BRepEdge.h>

// Get the value of the property.
string propertyValue = bRepEdge_var->entityToken();

Property Value

This is a read only property whose value is a string.

Version

Introduced in version September 2020