C# Reset Instance ID’s Within a V6 Product Structure

C# Reset Instance ID’s Within a V6 Product Structure

In a previous post “C# Connecting and Managing a Link to the CATIA App” we created a class that manages the connection to CATIA V6 (V5 Or Another application). Were going to use this to create the connection to V6 and to rename the instances within a product structure.

CATIA Connection

This section of code deals with creating the Connection and what to do if the connection status changes from connected to disconnected or visa-versa.

C#

CATIAV6RenameInstanceIDs Class

Within a new class called CATIAV6RenameInstanceIDs we will start of by creating the constructor, that will take in the ILogger and CATIAV6Connection objects.

C#

Rename Instance IDs Method

Within the CATIAV6RenameInstanceIDs a new Void Method will be created called RenameInstanceIDs. To validate the uniqueness of the instance ID, a Long name will be stored within a dictionary along with the Occurrence, where the long name will be the unique dictionary key.

C#

Navigate Product Structure

The Navigate Product Structure method, first defaults the instance ID to “Blank”, we have to default it to a recognizable string for when we test uniqueness.

C#

Get Long Name

Th Last Two methods, will create a long name and validate that it does not exist within the dictionary if it does it will roll to the next id until a unique id is found and return this back.

C#

One thought on “C# Reset Instance ID’s Within a V6 Product Structure

Leave a Reply

Your email address will not be published. Required fields are marked *