cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X

how to know part number of a drawing residing in the workspae

SV_9725428
3-Visitor

how to know part number of a drawing residing in the workspae

Hi Team,

We have a need to build custom code to get part number associated with drawing residing in the workspace of Creo Parametric. Could you please help with this?

1 REPLY 1
akok
11-Garnet
(To:SV_9725428)

I have something like this:

 

Drawing drawing = (Drawing) model;
Models solids = drawing.ListModels ();
Solid solid = (Solid)solids.get (0);

 

There I have the drawing in model.

You will then it in solid.GetFullName()

 

 

Top Tags