of_pageacross


pfcdwsrv.pbl   >   pfc_n_cst_dwsrv_printpreview   >   of_pageacross   

Full name pfc_n_cst_dwsrv_printpreview.of_pageacross
Access public
Extend of integer
Return value integer
Prototype public function integer of_pageacross()

Name Datatype
No Data

Name Datatype
ls_rc string

public function integer of_pageacross ();//////////////////////////////////////////////////////////////////////////////
//
//	Function:  of_PageAcross
//
//	Access:  public
//
//	Arguments:  none
//
//	Returns:  integer
//	the number of the current horizontal page
//	-1 = error
//
//	Description:  Returns the number of the current horizontal page
//
//////////////////////////////////////////////////////////////////////////////
//
//	Revision History
//
//	Version
//	5.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.
//
//////////////////////////////////////////////////////////////////////////////
string	ls_rc

if IsNull(idw_requestor) Or not IsValid (idw_requestor) then
	return -1
end if

ls_rc = idw_requestor.Describe ("evaluate ('PageAcross()', 1)")
if IsNumber (ls_rc) then
 	return Integer (ls_rc)
end if

return -1

end function

     
Name Owner
No Data

     
Name Owner
datawindow.describe datawindow
systemfunctions.integer systemfunctions
systemfunctions.isnull systemfunctions
systemfunctions.isnumber systemfunctions
systemfunctions.isvalid systemfunctions

     
Full name
No Data

     
Name Scope
No Data