Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

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

How to define a Tabular Note Header in NX 11 Using NXOpen?

Status
Not open for further replies.

biw01

Automotive
Dec 31, 2011
152
0
0
US
Hello Friends,

I am wondering which NX API will let me define a Tabular Note Header. I need to propagate the table along with the header if it reaches beyond a certain margin value. I am able to propagate the tabular note rows to the left using NX Open but I have to add the header row using code every single time.
Can someone help me out?

Thank you!
Amitabh

 
Replies continue below

Recommended for you

Code:
Dim rows(nRows) As NXOpen.Tag
lg.WriteLine("adding header title row")
theUfSession.Tabnot.CreateRow(titleRowHeight, rows(0))
theUfSession.Tabnot.AddHeaderRow(tabnote, rows(0), 0)

The above is what I have used in NX 9. Once you define a header row, it will be added to each section automatically if/when your table grows beyond the maximum height value.


www.nxjournaling.com
 
Status
Not open for further replies.
Back
Top