of_isfunctiondefined


pfcapsrv.pbl   >   pfc_n_cst_metaclass   >   of_isfunctiondefined   

Full name pfc_n_cst_metaclass.of_isfunctiondefined
Access public
Extend of boolean
Return value boolean
Prototype public function boolean of_isfunctiondefined(string,string,string[])

Name Datatype
No Data

Name Datatype
lcd_object classdefinition

public function boolean of_isfunctiondefined (string as_classname, string as_functionname, string as_argtype[]);//////////////////////////////////////////////////////////////////////////////
//
//	Function:
//	of_isFunctionDefined
//
//	Access:
//	public
//
//	Arguments:
//	as_classname		classname to check if function is defined for
//	as_functionname	function name to check if it is defined on as_classname
//	as_argtype[]		array of argument data types that are signature of as_functionname
//
//	Returns:
//	boolean
//	true = function is defined for class
//	false = function is not defined for class
//
//	Description:
//	Determines if a function is defined for a class
//
//////////////////////////////////////////////////////////////////////////////
//
//	Revision History
//
//	Version
//	6.0   Initial version
//
//////////////////////////////////////////////////////////////////////////////
//
//	Copyright © 1996-1997 Sybase, Inc. and its subsidiaries.  All rights reserved.
//	Any distribution of the PowerBuilder Foundation Classes (PFC)
//	source code by other than Sybase, Inc. and its subsidiaries is prohibited.
//
//////////////////////////////////////////////////////////////////////////////

classdefinition	lcd_object

// Find class definition
lcd_object = findClassDefinition (as_classname)

return of_isFunctionDefined (lcd_object, as_functionname, as_argtype[])
end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.findclassdefinition systemfunctions
pfc_n_cst_metaclass.of_isfunctiondefined pfc_n_cst_metaclass

     
Full name
No Data

     
Name Scope
No Data