1)  Pro/Toolkit
Pro/Toolkit开发工具
2)  Pr
Pr
1.
Simultaneous Analysis of La, Ce, Pr, Sm and Nd in Tea with ICP-OES;
ICP-OES法同时测定茶叶中La、Ce、Pr、Sm、Nd五种稀土元素
2.
Simultaneous determination of La and Pr by k-factor double-wavelength standard addition method;
k系数双波长标准加入法同时测定Pr和La
3.
Analysis and clinical significance of ER PR Ki67 and P53 expression in breast cancer;
ER PR Ki67 P53在乳腺癌中表达的相关分析及临床意义
3)  Pr(Ⅲ)
Pr(Ⅲ)
4)  Pr)
Pr)
5)  progesterone receptor
PR
1.
[Objective] To investigate the expression of HOXA11,estrogen receptor(ER) and progesterone receptor(PR) in human fallopian tube and ectopic pregnant fallopian.
[目的]探讨HOXA11在异位妊娠输卵管中的作用,以及与ER、PR的关系。
2.
Objective To investigate the effect of neoadjuvant chemotherapy on estrogen(ER) and progesterone receptor(PR) expression in breast cancer.
方法:应用免疫组化方法检测60例新辅助化疗治疗的乳腺癌和84例未术前化疗的乳腺癌标本化疗前或术前和术后ER、PR的表达情况,比较两组ER、PR表达变化的差异。
3.
The clinical significance of LRP16 and its association of expression with estrogen receptor (ER), progesterone receptor (PR) and E-cadherin in serous ovarian cancer were investigated.
目的:探讨LRP16在上皮性卵巢肿瘤中的定位,分析浆液性卵巢癌中LRP16与雌激素受体(estrogen receptor,ER)、孕激素受体(progesterone receptor,PR)、E-钙黏着蛋白(E-cadherin)表达间的相关性及临床意义。
6)  PR-A
PR-A
1.
Objective: To study the expression of PR-A and PR-B in breast cancers with positive PR and explore the correlation between clincopathological characteristics and the expression of PR-A and PR-B as well as their ratio.
目的:研究孕激素受体亚型PR-A、PR-B在PR阳性乳腺癌组织中的表达,探讨PR-A、PR-B以及PR-A与PR-B的比值(PR-A∶PRB)与临床病理参数之间的关系。
参考词条
补充资料:Pro/ENGINEER开发工具Pro/TOOLKIT简介
1 前言

    Pro/TOOLKIT是Pro/ENGINEER的一个应用程序接口(API),其的编程语言是C 语言,它可以对Pro/ENGINEER进行功能扩展,满足PTC客户的特定需求。而且,Pro/TOOLKIT提供了定制标准Pro/ENGINEER用户界面的能力,自动执行重复性的程序,通过Pro/ENGINEER集成的内部程序(Dll)或外部应用程序(Exe)可以为造型用户提供自定义的应用程序、设计规划和绘图自动化。


2 Pro/TOOLKIT编程条件和工具


    知道如何写C程序,就已经具备了使用Pro/TOOLKIT的条件,应该能够理解指针,当把数据从一个函数传到另一函数时,将经常使用到它。Pro/TOOLKIT帮助,包含2000多个函数,并且可以通过例子代码学习如何使用。除此之外,如果想解决几何学问题,还需要对失量理论有一定的了解。


3 Pro/TOOLKIT程序中的结构体


    Pro/TOOLKIT都是用C语言编写的,每个对象都用结构体来描述,因此需要了解对象是如何使用的。为了使用结构体,需要定义它,Pro/TOOLKIT提供许多“typedefs”,这些typedefs只不过是Pro/ENGINEER结构体的伪指令。例如:


typedef struct entity* ProPoint;
typedef struct sld_part* ProSolid;


    这些也叫做OHandles (from Opaque handles),在Pro/ENGINEER中它们直接获得对象的内存地址。在某些情况下,这样做可能是危险的,因此PTC提供了另外一种结构体类型,它只包含Pro/ENGINEER的内部数据库中项目的必要信息。这种结构体(labeled DHandle from data handle)是一种类的结构,它包括对象的类型、ID等。许多函数命令都和下面的结构体相联系。


typedef struct pro_model_item
{
ProType type;
int id;
ProMdl owner;
}ProModelitem,ProGeomitem,ProExtobj, ProFeature,ProProcstep,ProSimprep,ProExpldstate,
ProLayer,ProDimension,ProDtlnote,ProDtlsyminst,ProGtol,ProCompdisp  
 
    如果处理几何问题,要用到ProModelitem、ProGeomitem 和ProFeature这几个结构体。


4 Pro/TOOLKIT中的常用函数及使用


    需要了解的第一个函数是ProMdlCurrentGet()。在Pro/TOOLKIT帮助中其描述如下。


Description
Initializes the p_handle with the current Pro/ENGINEER object.

说明:补充资料仅用于学习参考,请勿用于其它任何用途。