How can we change the custom name of the Drafting View using NXOpen in NX 7.5 ?
How can we change the custom name of the Drafting View using NXOpen in NX 7.5 ?
(OP)
Hi Everyone,
Can someone let me know how can i change the custom name of a drafting view using NXOpen?
I tried using the SetName method but the view name is not changing.
Thanks and Regards,
Amitabh
Can someone let me know how can i change the custom name of a drafting view using NXOpen?
I tried using the SetName method but the view name is not changing.
Thanks and Regards,
Amitabh





RE: How can we change the custom name of the Drafting View using NXOpen in NX 7.5 ?
CODE
NXOpen.Drawings.BaseView baseView1 = (NXOpen.Drawings.BaseView)workPart.DraftingViews.FindObject("TOP@1"); baseView1.SetName("NewName");Suresh
www.technisites.com.au
RE: How can we change the custom name of the Drafting View using NXOpen in NX 7.5 ?
It works in NX 7.5.It was a small error on my part for which it was not updating.