Create DrawingView -- Reference Data

Create DrawingView -- Reference Data

Anonymous
Not applicable
814 Views
5 Replies
Message 1 of 6

Create DrawingView -- Reference Data

Anonymous
Not applicable
Hi

I am trying to create a new base view in drawingdocument.

I can get hold of the view but cant find a way to set reference data --- would like to set the "Line Style" to "As Parts" and "Hidden Line Calculation" to "All Bodies".

Is there a way / workaround ?

Thanks

Abhishek
0 Likes
815 Views
5 Replies
Replies (5)
Message 2 of 6

Anonymous
Not applicable

Is this yet possible?

0 Likes
Message 3 of 6

Anonymous
Not applicable

Has this feature been added, yet?

0 Likes
Message 4 of 6

Vladimir.Ananyev
Alumni
Alumni

If you have a reference to the DrawingView object then you may solve this problem in four steps.

 Workaround: 

1) Property DrawingView.ReferencedDocumentDescriptor returns the model document referenced by this view.  In your case this should be an assembly document.

2) You may scan assembly hierarchy to find referenced components.

3) Magic property DrawingView.DrawingCurves(referenced ComponentOccurrence) returns DrawingCurvesEnumerator with all drawing curves within the drawing view from this particular component occurrence.

4) If Count >0 then you may change properties of the DrawingCurve objects found to satisfy your requirements (line type, line weight, etc.).  Or change Layer property of all DrawingCurveSegment objects in the collection DrawingCurve.Segments() . 

Should this work for you?


Vladimir Ananyev
Developer Technical Services
Autodesk Developer Network

0 Likes
Message 5 of 6

Anonymous
Not applicable

Changing the layer properties will indeed make these lines appear solid rather than the phantom lines, but I believe that hidden line calculation will still need to be set in order for these items to appear properly.  I will try this when I have a free moment and see if this is the case.

0 Likes
Message 6 of 6

xiaodong_liang
Autodesk Support
Autodesk Support

Hi,

 

Good point.

 

DrawingCurveSegment.HiddenLine can returns whether this segment represents the hidden portion of a line

DrawingCurveSegment.Layer can set the layer associated with this segment.

 

0 Likes