of_isregistered


pfcdwsrv.pbl   >   pfc_n_cst_dwsrv_resize   >   of_isregistered   

Full name pfc_n_cst_dwsrv_resize.of_isregistered
Access public
Extend of boolean
Return value boolean
Prototype public function boolean of_isregistered(dwobject)

Name Datatype
No Data

Name Datatype
ls_control string

public function boolean of_isregistered (dwobject adwo_control);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  		of_IsRegistered
//
//	Access:  		public
//
//	Arguments:		
//	adwo_control 	Object to test if registered.
//
//	Returns:  		boolean
//	 True if the object is registered.
//	 False if not.
//
//	Description:
//	 Determine if the passed in object is registered.
//
//////////////////////////////////////////////////////////////////////////////
//
//	Revision History
//
//	Version
//	6.0   Initial version
//
//////////////////////////////////////////////////////////////////////////////
//
//	Copyright © 1996-1999 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.
//
//////////////////////////////////////////////////////////////////////////////

string ls_control

//Check parameters
If IsNull(adwo_control) Then
	Return False
End If

ls_control = adwo_control.Name
Return of_IsRegistered(ls_control)
end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.isnull systemfunctions
pfc_n_cst_dwsrv_resize.of_isregistered pfc_n_cst_dwsrv_resize

     
Full name
No Data

     
Name Scope
No Data