Category Creo Parametric user interface, Object ProMessage

Function ProMessageDisplay


Description
Prints a text message to the Creo Parametric message area, then scrolls previous messages to make room for the new message. The function looks for the message name in the specified message file, which provides a mapping between the message name and the actual text of the message to be displayed.

This function takes 0 to 10 additional arguments to be substituted for conversion specifiers in the text of the message, similar to printf().

  • Default Values

    Specify default values in the call to ProMessageDisplay(), using the separator ||| in the format string in the message file. (See the Creo Parametric TOOLKIT User's Guide section Contents of the Message File for the specific placement of the ||| separator.)

  • Message Classifications

    Messages displayed in Creo Parametric include a symbol which identifies the message type. Each message type is identified by a classification which begins with the characters %C. A message classification requires that the message key (line 1 in the message file) be proceeded by the classification code.

    Note:The message key string used in the code should NOT contain the classification.

    Creo Parametric TOOLKIT applications can now display any or all of these message symbols:

    • Prompt--the Creo Parametric message displayed is preceded by a green arrow. The user must respond to this message type (to either input information, accept the default value offered, or cancel the application). Without such action, no progress can be made. The response may be either textual or in the form of a selection. The classification code for Prompt messages is %CP.
    • Info--the Creo Parametric message displayed is preceded by a blue dot. This message type contains information such as user requests or feedback from either Creo Parametric or the Creo Parametric TOOLKIT application. The classification code for Info messages is %CI.

      Note: Do not classify as Info any message which informs users of a problem with an operation or process. Classify these messages as Warnings.

    • Warning--the Creo Parametric message displayed is preceded by a tri- angle containing an exclamation point. Warnings alert the user to situations which may lead to potentially erroneous situations at a later stage, for example, possible process restrictions imposed or a suspected data problem. However, warnings do not prevent or interrupt task completion, nor should they be used to indicate a failed operation. Warnings only caution the user that the operation has been completed, but may not have been performed in a completely desirable way. The classification code for Warning messages is %CW.
    • Error--the Creo Parametric message displayed is preceded by a broken square. This message type informs the user when a required task was not successfully completed. It may or may not require intervention or correction before work can continue, depending on the application. Whenever possible, provide a workaround. The classification code for Error messages is %CE.
    • Critical--the Creo Parametric message displayed is preceded by a red X. This message type informs the user of extremely serious situations, especially those which could cause the loss of user data. Options for redressing the situation (if available) should be provided with the message. The classification code for Critical messages is %CC.
Replacement in Object TOOLKIT: pfcSession::UIDisplayMessage
pfcSession::UIDisplayLocalizedMessage
Synopsis
#include <ProMessage.h>
ProErrorProMessageDisplay(
ProFileName file_name
/* (In)
The name of the file that contains the message
*/
ProCharLine message_name
/* (In)
The name of the message in the file
*/
...
/* (In)
The subsequent arguments for the values inserted into the format string are pointers, not values. These values can be data inserted into the message or default values for the data to be read from user input. Although the list of arguments for the values is variable in number, there is a maximum of 10.
*/
)
Returns
PRO_TK_NO_ERRORThe function successfully printed the message.
PRO_TK_E_NOT_FOUNDThe specified message file was not found.
PRO_TK_CANT_OPENThe system could not read the message file.
PRO_TK_MSG_NOT_FOUNDThe specified message was not found in the message file.
PRO_TK_MSG_NO_TRANSThe message text (in the current language of the user interface) was not found.
PRO_TK_MSG_FMT_ERRORThere was a format error in the message text.
PRO_TK_MSG_TOO_LONGThe message was longer than (PRO_LINE_SIZE - 1) characters and has been truncated to fit.
PRO_TK_E_FOUNDThe message file had been read in before this call and the message was not in it.
PRO_TK_GENERAL_ERRORThe message was not printed.

Manual References:

  1. Pro/DEVELOP to Creo Toolkit Function Mapping: Equivalent Pro/DEVELOP Functions
  2. Element Trees: Principles of Feature Creation: Tips for Recycling XML Output of Element Trees
  3. Fundamentals: Checking Your Declaration of wchar_t
  4. User Interface: Messages: Writing a Message to the Message Window
  5. User Interface: Messages: Writing a Message to the Message Window
  6. User Interface: Messages: Text Message File Format and Restrictions
  7. User Interface: Messages: Writing a Message to an Internal Buffer
  8. User Interface: Messages: Using Default Values
  9. User Interface: Dialogs: Location and Translation of Resource Files
  10. Migrating to Creo Object TOOLKIT C++: Migrating Applications Using Tools
  11. User Interface: Selection: Interactive Selection

Sample Code References:

  1. pt_af_examples ( PTAEToDraft.c )
  2. pt_af_examples ( PTAFExNotesToPlane.c )
  3. pt_af_examples ( PTAFExNotesToPlane.c )
  4. pt_af_examples ( PTAFNotesUpdate.c )
  5. pt_async ( TestAsync.c )
  6. pt_async ( TestAsync.c )
  7. pt_async ( TestAsync.c )
  8. pt_async ( TestAsync.c )
  9. pt_examples ( TestAnalysis.c )
  10. pt_examples ( TestAnalysis.c )
  11. pt_examples ( TestAnalysisCompCurve.c )
  12. pt_examples ( TestAnalysisCsys.c )
  13. pt_examples ( TestAnalysisCsys.c )
  14. pt_examples ( TestAnalysisCsys.c )
  15. pt_examples ( TestAnalysisCsys.c )
  16. pt_examples ( TestAnalysisCsys.c )
  17. pt_examples ( TestAnalysisCsys.c )
  18. pt_examples ( TestAnalysisCsys.c )
  19. pt_examples ( TestAnalysisCsys.c )
  20. pt_examples ( TestAnalysisCsys.c )
  21. pt_examples ( TestAnalysisCurve.c )
  22. pt_examples ( TestAnalysisCurve.c )
  23. pt_examples ( TestAnalysisCurve.c )
  24. pt_examples ( TestAnalysisSrfCurve.c )
  25. pt_examples ( TestAnalysisSrfCurve.c )
  26. pt_examples ( TestAnalysisSrfCurve.c )
  27. pt_examples ( TestAnalysisSrfCurve.c )
  28. pt_examples ( TestAnalysisSrfCurve.c )
  29. pt_examples ( TestAnalysisSurface.c )
  30. pt_examples ( TestFemmesh.c )
  31. pt_examples ( TestFemmesh.c )
  32. pt_examples ( TestPatternCreate.c )
  33. pt_examples ( TestPatternCreate.c )
  34. pt_examples ( TestPatternCreate.c )
  35. pt_examples ( TestPatternCreate.c )
  36. pt_examples ( TestPatternCreate.c )
  37. pt_examples ( TestPatternCreate.c )
  38. pt_examples ( TestPatternCreate.c )
  39. pt_examples ( TestPatternCreate.c )
  40. pt_examples ( TestPatternCreate.c )
  41. pt_examples ( TestPatternCreate.c )
  42. pt_examples ( TestPatternCreate.c )
  43. pt_examples ( TestPatternCreate.c )
  44. pt_examples ( TestPatternCreate.c )
  45. pt_examples ( TestPatternCreate.c )
  46. pt_examples ( TestPatternCreate.c )
  47. pt_examples ( TestPatternCreate.c )
  48. pt_examples ( TestPatternCreate.c )
  49. pt_examples ( TestPatternCreate.c )
  50. pt_examples ( TestPatternCreate.c )
  51. pt_examples ( TestPatternCreate.c )
  52. pt_examples ( TestPatternCreate.c )
  53. pt_examples ( TestPatternCreate.c )
  54. pt_examples ( TestPatternCreate.c )
  55. pt_examples ( TestPatternCreate.c )
  56. pt_examples ( TestPatternCreate.c )
  57. pt_examples ( TestPatternCreate.c )
  58. pt_examples ( TestPatternCreate.c )
  59. pt_examples ( TestPatternCreate.c )
  60. pt_examples ( TestPatternCreate.c )
  61. pt_examples ( TestPatternCreate.c )
  62. pt_examples ( TestPatternCreate.c )
  63. pt_examples ( TestPatternCreate.c )
  64. pt_examples ( TestPatternCreate.c )
  65. pt_examples ( TestPatternCreate.c )
  66. pt_examples ( TestPatternCreate.c )
  67. pt_examples ( TestPatternCreate.c )
  68. pt_examples ( TestPatternCreate.c )
  69. pt_examples ( TestPatternCreate.c )
  70. pt_examples ( TestPatternCreate.c )
  71. pt_examples ( TestPatternCreate.c )
  72. pt_examples ( TestPatternCreate.c )
  73. pt_examples ( TestPatternCreate.c )
  74. pt_examples ( TestGeom.c )
  75. pt_examples ( TestGeom.c )
  76. pt_examples ( TestGeom.c )
  77. pt_examples ( TestGeom.c )
  78. pt_examples ( TestGeom.c )
  79. pt_examples ( TestGeom.c )
  80. pt_examples ( TestGeom.c )
  81. pt_examples ( TestGeom.c )
  82. pt_examples ( TestGeom.c )
  83. pt_examples ( TestGeom.c )
  84. pt_examples ( TestGeom.c )
  85. pt_examples ( TestGeom.c )
  86. pt_examples ( TestGeom.c )
  87. pt_examples ( TestDrwView.c )
  88. pt_examples ( TestDrwView.c )
  89. pt_examples ( TestDrwView.c )
  90. pt_examples ( TestDrwView.c )
  91. pt_examples ( TestDrwView.c )
  92. pt_examples ( TestRay.c )
  93. pt_examples ( TestDrawing.c )
  94. pt_examples ( TestMenubar.c )
  95. pt_examples ( TestMenubar.c )
  96. pt_examples ( TestMenubar.c )
  97. pt_examples ( TestMessage.c )
  98. pt_examples ( TestMessage.c )
  99. pt_examples ( TestMessage.c )
  100. pt_examples ( TestMessage.c )
  101. pt_examples ( TestCollect.c )
  102. pt_examples ( TestCollect.c )
  103. pt_examples ( TestCollect.c )
  104. pt_examples ( TestCollect.c )
  105. pt_examples ( TestCollect.c )
  106. pt_examples ( TestCollect.c )
  107. pt_examples ( TestCollect.c )
  108. pt_examples ( TestCollect.c )
  109. pt_examples ( TestCollect.c )
  110. pt_examples ( UtilMessage.c )
  111. pt_geardesign ( GearDesign.c )
  112. pt_geardesign ( GearDesign.c )
  113. pt_geardesign ( GearDesign.c )
  114. pt_geardesign ( GearDesign.c )
  115. pt_geardesign ( GearDesign.c )
  116. pt_geardesign ( GearDesign.c )
  117. pt_geardesign ( GearDesign.c )
  118. pt_geardesign ( GearDesign.c )
  119. pt_geardesign ( GearDesign.c )
  120. pt_geardesign ( GearDesign.c )
  121. pt_geardesign ( GearDesign.c )
  122. pt_geardesign ( GearDesign.c )
  123. pt_geardesign ( GearDesignUI.c )
  124. pt_geardesign ( GearDesignUI.c )
  125. pt_install_cxx ( TestInstall.cxx )
  126. pt_install_test ( TestInstall.c )
  127. pt_install_test ( TestInstall.c )
  128. pt_mech_examples ( PTMechExCopy.c )
  129. pt_mech_examples ( PTMechExCopy.c )
  130. pt_mech_examples ( PTMechExCopy.c )
  131. pt_mech_examples ( PTMechExCopy.c )
  132. pt_mech_examples ( PTMechExDelete.c )
  133. pt_mech_examples ( PTMechExDelete.c )
  134. pt_mech_examples ( PTMechExDelete.c )
  135. pt_mech_examples ( PTMechExItemInfo.c )
  136. pt_mech_examples ( PTMechExItemInfo.c )
  137. pt_mech_examples ( PTMechExItemInfo.c )
  138. pt_mech_examples ( PTMechExItemInfo.c )
  139. pt_mech_examples ( PTMechExLoadMenu.c )
  140. pt_mech_examples ( PTMechExLoadMenu.c )
  141. pt_mech_examples ( PTMechExLoadMenu.c )
  142. pt_mech_examples ( PTMechExLoadMenu.c )
  143. pt_mech_examples ( PTMechExLoadMenu.c )
  144. pt_mech_examples ( PTMechExLoadMenu.c )
  145. pt_mech_examples ( PTMechExLoadMenu.c )
  146. pt_mech_examples ( PTMechExMagChange.c )
  147. pt_mech_examples ( PTMechExMagChange.c )
  148. pt_mech_examples ( PTMechExMagChange.c )
  149. pt_mech_examples ( PTMechExMagChange.c )
  150. pt_mech_examples ( PTMechExMatOrient.c )
  151. pt_mech_examples ( PTMechExMatOrient.c )
  152. pt_mech_examples ( PTMechExMatOrient.c )
  153. pt_udf_examples ( PTUDFExGroupUngroup.c )
  154. pt_userguide ( UgAnimAsmcompAnim.c )
  155. pt_userguide ( UgAnimAsmcompAnim.c )
  156. pt_userguide ( UgAnimAsmcompAnim.c )
  157. pt_userguide ( UgAnimAsmcompAnim.c )
  158. pt_userguide ( UgAsmcompConstraint.c )
  159. pt_userguide ( UgAsmcompConstraint.c )
  160. pt_userguide ( UgAsmcompConstraint.c )
  161. pt_userguide ( UgAsmcompConstraint.c )
  162. pt_userguide ( UgAsmcompConstraint.c )
  163. pt_userguide ( UgAsmcompConstraint.c )
  164. pt_userguide ( UgAsmcompConstraint.c )
  165. pt_userguide ( UgAsmcompConstraint.c )
  166. pt_userguide ( UgAsmcompConstraint.c )
  167. pt_userguide ( UgAsmcompConstraint.c )
  168. pt_userguide ( UgAsmcompConstraint.c )
  169. pt_userguide ( UgAsmcompConstraint.c )
  170. pt_userguide ( UgDatumCreate.c )
  171. pt_userguide ( UgDatumCreate.c )
  172. pt_userguide ( UgDatumCreate.c )
  173. pt_userguide ( UgDimDisplayRounded.c )
  174. pt_userguide ( UgDimDisplayRounded.c )
  175. pt_userguide ( UgDimDisplayRounded.c )
  176. pt_userguide ( UgDimDisplayRounded.c )
  177. pt_userguide ( UgDimDisplayRounded.c )
  178. pt_userguide ( UgDimDisplayRounded.c )
  179. pt_userguide ( UgDimDisplayRounded.c )
  180. pt_userguide ( UgDimLocationUtils.c )
  181. pt_userguide ( UgDimLocationUtils.c )
  182. pt_userguide ( UgDimLocationUtils.c )
  183. pt_userguide ( UgDimLocationUtils.c )
  184. pt_userguide ( UgDimsChange.c )
  185. pt_userguide ( UgDimsChange.c )
  186. pt_userguide ( UgDimsChange.c )
  187. pt_userguide ( UgDimsChange.c )
  188. pt_userguide ( UgDimsChange.c )
  189. pt_userguide ( UgDimsChange.c )
  190. pt_userguide ( UgDimsChange.c )
  191. pt_userguide ( UgDrawingDimensions.c )
  192. pt_userguide ( UgDrawingFromTmpltCreate.c )
  193. pt_userguide ( UgDrawingFromTmpltCreate.c )
  194. pt_userguide ( UgDtlentityExamples.c )
  195. pt_userguide ( UgDtlgroupExamples.c )
  196. pt_userguide ( UgDtlgroupExamples.c )
  197. pt_userguide ( UgDtlnoteExamples.c )
  198. pt_userguide ( UgDtlnoteExamples.c )
  199. pt_userguide ( UgDtlsymdefExamples.c )
  200. pt_userguide ( UgDtlsymdefExamples.c )
  201. pt_userguide ( UgDwgtableExamples.c )
  202. pt_userguide ( UgDwgtableExamples.c )
  203. pt_userguide ( UgDrwTree.c )
  204. pt_userguide ( UgDrwTree.c )
  205. pt_userguide ( UgDrwTree.c )
  206. pt_userguide ( UgDwgPublishContext.c )
  207. pt_userguide ( UgDwgPublishContext.c )
  208. pt_userguide ( UgDwgPublishContext.c )
  209. pt_userguide ( UgDwgPublishContext.c )
  210. pt_userguide ( UgDwgPublishContext.c )
  211. pt_userguide ( UgDwgPublishContext.c )
  212. pt_userguide ( UgDwgPublishContext.c )
  213. pt_userguide ( UgDwgPublishContext.c )
  214. pt_userguide ( UgDwgPublishContext.c )
  215. pt_userguide ( UgDwgPublishContext.c )
  216. pt_userguide ( UgDwgPublishContext.c )
  217. pt_userguide ( UgDwgPublishContext.c )
  218. pt_userguide ( UgDwgPublishContext.c )
  219. pt_userguide ( UgDwgPublishContext.c )
  220. pt_userguide ( UgDwgPublishContext.c )
  221. pt_userguide ( UgDwgPublishContext.c )
  222. pt_userguide ( UgDwgPublishContext.c )
  223. pt_userguide ( UgDwgPublishContext.c )
  224. pt_userguide ( UgModelAdd.c )
  225. pt_userguide ( UgModelAdd.c )
  226. pt_userguide ( UgModelDelete.c )
  227. pt_userguide ( UgModelDelete.c )
  228. pt_userguide ( UgNoteCreate.c )
  229. pt_userguide ( UgNoteCreate.c )
  230. pt_userguide ( UgNotesColor.c )
  231. pt_userguide ( UgSheetAdd.c )
  232. pt_userguide ( UgSheetCopy.c )
  233. pt_userguide ( UgSheetCopy.c )
  234. pt_userguide ( UgSheetCopy.c )
  235. pt_userguide ( UgSheetCopy.c )
  236. pt_userguide ( UgSheetDelete.c )
  237. pt_userguide ( UgSheetDelete.c )
  238. pt_userguide ( UgTableColorChange.c )
  239. pt_userguide ( UgExtAnalysisSurfcsys.c )
  240. pt_userguide ( UgExtAnalysisSurfcsys.c )
  241. pt_userguide ( UgExtAnalysisSurfcsys.c )
  242. pt_userguide ( UgExtAnalysisSurfcsys.c )
  243. pt_userguide ( UgExtAnalysisSurfcsys.c )
  244. pt_userguide ( UgExtobjCreate.c )
  245. pt_userguide ( UgFamtabUse.c )
  246. pt_userguide ( UgFamtabUse.c )
  247. pt_userguide ( Ug3DSectSplineDim.c )
  248. pt_userguide ( Ug3DSectSplineDim.c )
  249. pt_userguide ( Ug3DSectSplineDim.c )
  250. pt_userguide ( Ug3DSectSplineDim.c )
  251. pt_userguide ( Ug3DSection.c )
  252. pt_userguide ( Ug3DSection.c )
  253. pt_userguide ( Ug3DSection.c )
  254. pt_userguide ( Ug3DSection.c )
  255. pt_userguide ( Ug3DSection.c )
  256. pt_userguide ( Ug3DSection.c )
  257. pt_userguide ( Ug3DSection.c )
  258. pt_userguide ( Ug3DSweepCreate.c )
  259. pt_userguide ( Ug3DSweepCreate.c )
  260. pt_userguide ( UgChamferTemplate.c )
  261. pt_userguide ( UgCreoSweepCreate.c )
  262. pt_userguide ( UgCreoSweepCreate.c )
  263. pt_userguide ( UgDatumAxisCreate.c )
  264. pt_userguide ( UgDatumAxisCreate.c )
  265. pt_userguide ( UgDraftTemplate.c )
  266. pt_userguide ( UgDraftTemplate.c )
  267. pt_userguide ( UgDraftTemplate.c )
  268. pt_userguide ( UgEdgeChamferCreate.c )
  269. pt_userguide ( UgEdgeRoundCreate.c )
  270. pt_userguide ( UgEdgeRoundCreate.c )
  271. pt_userguide ( UgEdgeRoundCreate.c )
  272. pt_userguide ( UgFieldPointCreate.c )
  273. pt_userguide ( UgFlexModelCreate.c )
  274. pt_userguide ( UgFlexModelCreate.c )
  275. pt_userguide ( UgFlexModelCreate.c )
  276. pt_userguide ( UgFlexModelCreate.c )
  277. pt_userguide ( UgFlexModelCreate.c )
  278. pt_userguide ( UgFlexModelCreate.c )
  279. pt_userguide ( UgFlexModelCreate.c )
  280. pt_userguide ( UgFlexModelCreate.c )
  281. pt_userguide ( UgFlexModelCreate.c )
  282. pt_userguide ( UgFlexModelCreate.c )
  283. pt_userguide ( UgFlexModelCreate.c )
  284. pt_userguide ( UgFlexModelCreate.c )
  285. pt_userguide ( UgGeneralCsysCreate.c )
  286. pt_userguide ( UgGeneralPointCreate.c )
  287. pt_userguide ( UgGeneralPointCreate.c )
  288. pt_userguide ( UgGeneralPointCreate.c )
  289. pt_userguide ( UgIntcollectionDraftCreate.c )
  290. pt_userguide ( UgIntcollectionDraftCreate.c )
  291. pt_userguide ( UgIntcollectionDraftCreate.c )
  292. pt_userguide ( UgOADraftCreate.c )
  293. pt_userguide ( UgOADraftCreate.c )
  294. pt_userguide ( UgOADraftCreate.c )
  295. pt_userguide ( UgOADraftCreate.c )
  296. pt_userguide ( UgOADraftCreate.c )
  297. pt_userguide ( UgOffsetPointCreate.c )
  298. pt_userguide ( UgRemoveSurfCreate.c )
  299. pt_userguide ( UgRemoveSurfCreate.c )
  300. pt_userguide ( UgRemoveSurfCreate.c )
  301. pt_userguide ( UgRoundTemplate.c )
  302. pt_userguide ( UgRoundTemplate.c )
  303. pt_userguide ( UgRoundTemplate.c )
  304. pt_userguide ( UgSimpleDraftCreate.c )
  305. pt_userguide ( UgSimpleDraftCreate.c )
  306. pt_userguide ( UgSimpleDraftCreate.c )
  307. pt_userguide ( UgSketchedCurveCreate.c )
  308. pt_userguide ( UgSketchedCurveCreate.c )
  309. pt_userguide ( UgSketchedPointCreate.c )
  310. pt_userguide ( UgSketchedPointCreate.c )
  311. pt_userguide ( UgSktExtrusionCreate.c )
  312. pt_userguide ( UgSktExtrusionCut.c )
  313. pt_userguide ( UgSktExtrusionCut.c )
  314. pt_userguide ( UgSktExtrusionProtrusion.c )
  315. pt_userguide ( UgSktExtrusionProtrusion.c )
  316. pt_userguide ( UgSktExtrusionProtrusionExtSkt.c )
  317. pt_userguide ( UgSktExtrusionSurfaceCapped.c )
  318. pt_userguide ( UgSktExtrusionSurfaceCapped.c )
  319. pt_userguide ( UgSktExtrusionSurfaceTrim.c )
  320. pt_userguide ( UgSktExtrusionSurfaceTrim.c )
  321. pt_userguide ( UgSktExtrusionTemplate.c )
  322. pt_userguide ( UgSktExtrusionTemplate.c )
  323. pt_userguide ( UgSktExtrusionThin.c )
  324. pt_userguide ( UgSktExtrusionThin.c )
  325. pt_userguide ( UgSktRevolveProtrusion.c )
  326. pt_userguide ( UgSktRevolveProtrusion.c )
  327. pt_userguide ( UgSktRevolveProtrusionExtSkt.c )
  328. pt_userguide ( UgSktRevolveProtrusionExtSkt.c )
  329. pt_userguide ( UgSktRevolveSurface.c )
  330. pt_userguide ( UgSktRevolveSurface.c )
  331. pt_userguide ( UgSktRevolveTemplate.c )
  332. pt_userguide ( UgSktRevolveTemplate.c )
  333. pt_userguide ( UgSktRevolveThinCut.c )
  334. pt_userguide ( UgSktRevolveThinCut.c )
  335. pt_userguide ( UgXMLFeat.c )
  336. pt_userguide ( UgXMLFeat.c )
  337. pt_userguide ( UgFundCsysTrf.c )
  338. pt_userguide ( UserSelectSurface.c )
  339. pt_userguide ( UserSelectSurface.c )
  340. pt_userguide ( UgGeomArcDiaDisp.c )
  341. pt_userguide ( UgGeomArcDiaDisp.c )
  342. pt_userguide ( UgGeomArcDiaDisp.c )
  343. pt_userguide ( UgGeomChildDisp.c )
  344. pt_userguide ( UgGeomConeAngDisp.c )
  345. pt_userguide ( UgGeomConeAngDisp.c )
  346. pt_userguide ( UgGeomConeAngDisp.c )
  347. pt_userguide ( UgGeomCurveLength.c )
  348. pt_userguide ( UgGeomCurveLength.c )
  349. pt_userguide ( UgGeomHoleSrfDisp.c )
  350. pt_userguide ( UgGeomHoleSrfDisp.c )
  351. pt_userguide ( UgGeomInterferCheck.c )
  352. pt_userguide ( UgGeomInterferCheck.c )
  353. pt_userguide ( UgGeomInterferCheck.c )
  354. pt_userguide ( UgGeomInterferCheck.c )
  355. pt_userguide ( UgGeomInterferCheck.c )
  356. pt_userguide ( UgGeomInterferCheck.c )
  357. pt_userguide ( UgGeomInterferCheck.c )
  358. pt_userguide ( UgGeomInterferCheck.c )
  359. pt_userguide ( UgGeomInterferCheck.c )
  360. pt_userguide ( UgGeomInterferCheck.c )
  361. pt_userguide ( UgGeomInterferCheck.c )
  362. pt_userguide ( UgGeomInterferCheck.c )
  363. pt_userguide ( UgGeomInterferCheck.c )
  364. pt_userguide ( UgGeomSurfArea.c )
  365. pt_userguide ( UgGeomSurfArea.c )
  366. pt_userguide ( UgGeomSurfRename.c )
  367. pt_userguide ( UgGeomSurfRename.c )
  368. pt_userguide ( UgGraphColorsAdjust.c )
  369. pt_userguide ( UgGraphColorsAdjust.c )
  370. pt_userguide ( UgGraphColorsAdjust.c )
  371. pt_userguide ( UgGraphLineCircleDraw.c )
  372. pt_userguide ( UgGraphZoomAtPoint.c )
  373. pt_userguide ( UgGtolCreate.c )
  374. pt_userguide ( UgGtolCreate.c )
  375. pt_userguide ( UgGtolCreate.c )
  376. pt_userguide ( UgGtolCreate.c )
  377. pt_userguide ( UgGtolCreate.c )
  378. pt_userguide ( UgInterfaceExport.c )
  379. pt_userguide ( UgInterfaceExport.c )
  380. pt_userguide ( UgInterfaceExport.c )
  381. pt_userguide ( UgInterfaceImport.c )
  382. pt_userguide ( UgModelCheck.c )
  383. pt_userguide ( UgModelCheck.c )
  384. pt_userguide ( UgModelCheck.c )
  385. pt_userguide ( UgPlotSetup.c )
  386. pt_userguide ( UgMenuConfirmGet.c )
  387. pt_userguide ( UgNavigatorPane.c )
  388. pt_userguide ( UgNavigatorPane.c )
  389. pt_userguide ( UgNavigatorPane.c )
  390. pt_userguide ( UgNavigatorPane.c )
  391. pt_userguide ( UgNavigatorPane.c )
  392. pt_userguide ( UgNavigatorPane.c )
  393. pt_userguide ( UgNavigatorPane.c )
  394. pt_userguide ( UgNavigatorPane.c )
  395. pt_userguide ( UgNavigatorPane.c )
  396. pt_userguide ( UgNavigatorPane.c )
  397. pt_userguide ( UgNavigatorPane.c )
  398. pt_userguide ( UgNavigatorPane.c )
  399. pt_userguide ( UgNavigatorPane.c )
  400. pt_userguide ( UgNavigatorPane.c )
  401. pt_userguide ( UgNavigatorPane.c )
  402. pt_userguide ( UgNavigatorPane.c )
  403. pt_userguide ( UgNavigatorPane.c )
  404. pt_userguide ( UgNavigatorPane.c )
  405. pt_userguide ( UgNavigatorPane.c )
  406. pt_userguide ( UgMessageWindowUse.c )
  407. pt_userguide ( UgMessageWindowUse.c )
  408. pt_userguide ( UgMessageWindowUse.c )
  409. pt_userguide ( UgMessageWindowUse.c )
  410. pt_userguide ( UgMessageWindowUse.c )
  411. pt_userguide ( UgMessageWindowUse.c )
  412. pt_userguide ( UgMfgOperCreate.c )
  413. pt_userguide ( UgMfgWcellIdentify.c )
  414. pt_userguide ( UgMfgWcellIdentify.c )
  415. pt_userguide ( UgModelLayerCreate.c )
  416. pt_userguide ( UgModelLayerCreate.c )
  417. pt_userguide ( UgModelLayerCreate.c )
  418. pt_userguide ( UgModelLayerCreate.c )
  419. pt_userguide ( UgModelLayerCreate.c )
  420. pt_userguide ( UgModelLayerScan.c )
  421. pt_userguide ( UgMaterial.c )
  422. pt_userguide ( UgMaterial.c )
  423. pt_userguide ( UgParamFeatLabel.c )
  424. pt_userguide ( UgParamFeatLabel.c )
  425. pt_userguide ( UgParamFeatLabel.c )
  426. pt_userguide ( UgRelsEdit.c )
  427. pt_userguide ( UgRelsEdit.c )
  428. pt_userguide ( UgRelsEdit.c )
  429. pt_userguide ( UgSimprepCreate.c )
  430. pt_userguide ( UgSolidInfoMass.c )
  431. pt_userguide ( UgSolidInfoMass.c )
  432. pt_userguide ( UgSolidLoadDisp.c )
  433. pt_userguide ( UgSolidLoadDisp.c )
  434. pt_userguide ( UgSolidNoteCreate.c )
  435. pt_userguide ( UgSolidNoteCreate.c )
  436. pt_userguide ( UgSolidNoteCreate.c )
  437. pt_userguide ( UgSolidNoteCreate.c )
  438. pt_userguide ( UgSolidOutlineComp.c )
  439. pt_userguide ( UgSolidOutlineComp.c )
  440. pt_userguide ( UgSolidOutlineComp.c )
  441. pt_userguide ( UgSolidOutlineComp.c )
  442. pt_userguide ( UgUISlider.c )
  443. pt_userguide ( UgUtilFile.c )
  444. pt_userguide ( UgUtilFile.c )
  445. pt_userguide ( UgUtilPick.c )
  446. pt_userguide ( UgXsecMassProps.c )
  447. pt_userguide ( UgXsecMassProps.c )
  448. pt_userguide ( UgXsecMassProps.c )
  449. pt_userguide ( UgXsecMassProps.c )
  450. pt_userguide ( UgXsecMassProps.c )