of_getupdateobjects


pfcmain.pbl   >   pfc_u_tab   >   of_getupdateobjects   

Full name pfc_u_tab.of_getupdateobjects
Access protected
Extend of integer
Return value integer
Prototype protected function integer of_getupdateobjects(ref powerobject[])

Name Datatype
No Data

Name Datatype
No Data

protected function integer of_getupdateobjects (ref powerobject apo_objects[]);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  of_GetUpdateObjects
//
//	Access:  protected
//
//	Arguments:		
//	apo_objects[] (by reference) An array of objects on which the update process 
//				will take effect.
//
//	Returns:  integer
//	 1 = success
//	-1 = error
//
//	Description:
//	Gets the current default array holding objects for which an updates will be
//	attempted.
//
//	Note:
// If ipo_updateobjects has not yet been set, the function returns the object's
//	control array.
//
//////////////////////////////////////////////////////////////////////////////
//
//	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.
//
//////////////////////////////////////////////////////////////////////////////

If UpperBound(ipo_updateobjects) > 0 Then
	apo_objects = ipo_updateobjects
	Return 1
End If

apo_objects = this.Control
Return 1
end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.upperbound systemfunctions

     
Full name
No Data

     
Name Scope
No Data