pb:类定义查找函数

类定义查找函数

类定义查找函数用于在一个或多个PB应用程序库(PBL)中查找对象、全局函数和类型,并提供他们的类定义信息、函数脚本和类型定义信息。

1、FindClassDefinition()

功  能:在一个或多个PB应用程序库(PBL)中查找指定的对象并提供该对象的类定义信息。

语  法:FindClassDefinition ( classname {,librarylist} )

参  数:classname:要得到信息的对象的名称;

librarylist:可选参数,它是一个字符串数组,其值为要在其中查找对象的应用库(PBL)的名称,该名称使用完整的路径名,如果省略了该参数,那么FindClassDefinition()函数按当前运行应用程序的库列表查找对象。

返回值:ClassDefiniton。返回包含指定对象类定义信息的ClassDefinition对象的引用。如果任何参数的值为NULL,FindClassDefinition ()函数返回NULL。

示  例:This example searches the libraries for the running application to find the class definition for w_genapp_frame:

ClassDefinition cd_windef

cd_windef = FindClassDefinition("w_genapp_frame")

This example searches the libraries in the array ls_libraries to find the class

你可能感兴趣的:(PowerBuilder,powerbuilder,pb)