Create aligned dimension between rebars

Create aligned dimension between rebars

Anonymous
Not applicable
1,417 Views
1 Reply
Message 1 of 2

Create aligned dimension between rebars

Anonymous
Not applicable

I was trying to create new aligned dimension between rebars. The error message I'm getting is: The references are not geometric references.

 

Is there a work around so that I can create dim for rebars?

0 Likes
1,418 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable

I was able to solve the issue. Rebar doesn't give any geometry. So all trial to generate dim from Rebar was failing.

The method I tried was with the ActiveView, selected rebar Options.

Snippet

Options options = new Options();

options.ComputeReferences = true; options.IncludeNonVisibleObjects = true; //options.DetailLevel = ViewDetailLevel.Fine; options.View = uiDoc.Document.ActiveView;

If I select the Geometry Elements from this and filter only lines, I can get the reference of that lines.

Hope this helps someone in future.  

0 Likes