of_getupdateobjects


pfcmain.pbl   >   pfc_w_master   >   of_getupdateobjects   

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

Name Datatype
apo_objects powerobject

Name Datatype
No Data

protected function integer of_getupdateobjects (ref powerobject apo_objects[]);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  of_GetUpdateObjects
//
//	Access:  protected
//
//	Arguments:		
//	apo_objects[]   by Reference.  The current array of objects on which the update 
//						process may take effect.
//
//	Returns:  integer
//	 1 = success
//	-1 = error
//
//	Description:
//	Get the array on which updates would be attempted.
//
// Note:
// If the ipo_updateobjects array has not been set, the PFC Save functionality, 
//	uses the window control array (this.Control[]).  
//
//////////////////////////////////////////////////////////////////////////////
//
//	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
Else
	// If the ipo_updateobjects array has not been set, the PFC Save functionality, 
	//	uses the window control array (this.Control[]).  	
	apo_objects = this.Control
End If

Return 1
end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.upperbound systemfunctions

     
Full name
No Data

     
Name Scope
No Data