I have created a part attribute of type real(number) in NX8. I want to read that details using c++ code. If anyone knows help me regarding this. advance thank you.
Please look at the NXObject class, there are the methods to access the attributes.
// Get the session
NXOpen::Session * pTheSession = Session::GetSession();
// Get the workpart (assuming this is your newly created)
NXOpen:art* pWorkpart = pTheSession->Parts()->Work();
// Now you can inquire the attributes with the memberfunctions of NXObject