Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Placing a Tabular Note in NX 8.5 Journal

Status
Not open for further replies.

sriharsha1994

Mechanical
Joined
Jul 28, 2015
Messages
30
Location
IN
In a drawing sheet,we have different views like Front View,Back view,Side view etc.(Total 6 views)..When I am using SpecifyScreenPosition to locate TabularNote in Drawing sheet other than views,then it is placed according to cursor location but when the tabularNote is placed at views,then the location is not same as cursor ..I hope you understand

I have written the following code to locate the position of Tabular Note in a drawing sheet:

Dim UserselectedPoint(2) As Double
UserselectedPoint = SelectScreenPoint()
If IsNothing(UserselectedPoint) Then
Return
End If

Dim TabularNotePos As New Point3d(UserselectedPoint(0), UserselectedPoint(1), UserselectedPoint(2))

The coordinates of the Drawing sheet are different from Drawing view:This is so called global and local coordinates concept.
Please help me in solving this..I need to locate my tabularNote correctly.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top