How to define a Tabular Note Header in NX 11 Using NXOpen?
How to define a Tabular Note Header in NX 11 Using NXOpen?
(OP)
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
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





RE: How to define a Tabular Note Header in NX 11 Using NXOpen?
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
RE: How to define a Tabular Note Header in NX 11 Using NXOpen?