Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
I need to know if the part is mm or inch as I need to set different text heights for each case. Can you please help me find the api to do this?
ProUnitsystem unit_system;
ProUnititem unit;
ProMdlPrincipalunitsystemGet(currentModel, &unit_system);
ProUnitsystemUnitGet(&unit_system, PRO_UNITTYPE_LENGTH, &unit);
unit.name is holding then "in" or "mm" or other values...
