of_isregistered


pfcapsrv.pbl   >   pfc_n_cst_tmgsingle   >   of_isregistered   

Full name pfc_n_cst_tmgsingle.of_isregistered
Access public
Extend of boolean
Return value boolean
Prototype public function boolean of_isregistered(powerobject)

Name Datatype
No Data

Name Datatype
No Data

public function boolean of_isregistered (powerobject apo_object);//////////////////////////////////////////////////////////////////////////////
//
//	Function:
//	of_IsRegistered
//
//	Access:
//	public
//
//	Arguments:
//	apo_object : powerobject ; Object to be searched for
//
//	Returns:
//	Boolean
//	SUCCESS = True
//	Entry not found = False
//
//	Description:
//	Returns whether the passed in object was found or not.
//
//////////////////////////////////////////////////////////////////////////////
//
//	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.
//
//////////////////////////////////////////////////////////////////////////////

// Validate the arguments.
If isnull(apo_object) Then Return false
If not isvalid(apo_object) Then Return false

If IsValid(ipo_notifyobject) Then
	If ipo_notifyobject = apo_object Then
		Return True
	End If
End If

// Not found
Return false

end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.isnull systemfunctions
systemfunctions.isvalid systemfunctions

     
Full name
No Data

     
Name Scope
No Data