- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I need some help.
I want to collect all tolerances used in a drawing view.
Collecting the drawing tolerances for DrawingDimensions works fine. But it is a problem to get the tolerances defined for holefeatures in parts model.
HoleThreadNote first = sheet.DrawingNotes.HoleThreadNotes.Cast<HoleThreadNote> ().First ();
string a = first.Text.Text;
// a = "n3,00 H7 DURCH"
string a = first.Text.Text;
// a = "n3,00 H7 DURCH"
string holTol = first.Tolerance.HoleTolerance;
// holTol = "";
// holTol = "";
string shaftTol = first.Tolerance.ShaftTolerance;
// shaftTol = "";
// shaftTol = "";
Is there another method to get the "model" tolerances? Only possible by parsing the text string?
Thank you!
Regards
Petra
Solved! Go to Solution.