I would like to access information of inserted cosmetic thread, not generated by Hole Wizard. I've got an object called CosmeticThread using GetTypeName function, but I don't know how to obtain its data since I found nothing called CosmeticThread in object browser of sldworks.
Thank you very much.
Billy
Didn't find your answer? Ask the community — no account required.
H
Heikki Leivo
Cosmetic thread is a feature. To access cosmetic thread data, you have to get CosmeticThreadFeatureData object by calling Feature::GetDefinition. For example, let us assume you get cosmetic thread feature by some means, then you could do the following...
Dim objCosmeticThread as SldWorks.Feature .... '(get feature somewhere) Dim objCosmeticThreadData as SldWorks.CosmeticThreadFeatureData 'Get feature definition Set objCosmeticThreadData = objCosmeticThread.GetDefinition 'do something with data... xxx = objCosmeticThreadData.BlindDepth yyy = objCosmeticThreadData.Diameter
etc.
Refer to API help, for example write "cos" on the index tab...
-h-
Join the Discussion
Have something to add? Share your thoughts — no account required.
Didn't find your answer?
Ask the community — no account required
Report Content
You are reporting this content to the moderators. They will look at it
ASAP.