of_modify


pfcwnsrv.pbl   >   pfc_n_cst_winsrv_statusbar   >   of_modify   

Full name pfc_n_cst_winsrv_statusbar.of_modify
Access public
Extend of integer
Return value integer
Prototype public function integer of_modify(string)

Name Datatype
No Data

Name Datatype
li_rc integer

public function integer of_modify (string as_modifyexp);//////////////////////////////////////////////////////////////////////////////
//
//	Function:	of_Modify
//
//	Access:		Public
//
//	Arguments:
//	as_modify	The string to be used on the modification of the object.
//	
//	Returns:		integer
//	SUCCESS = 1
//	ERROR = -1
//
//	Description:
//	Modifies the value of the User Defined object.
//
//////////////////////////////////////////////////////////////////////////////
//
//	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.
//
//////////////////////////////////////////////////////////////////////////////

integer	li_rc = 1

// Check arguments.
If IsNull(as_modifyexp) or Len(trim(as_modifyexp))= 0  Then
	Return -1
End If

If IsValid(iw_statusbar) Then
	li_rc = iw_statusbar.of_modify(as_modifyexp)
Else
	Return -1
End If

Return li_rc
end function

     
Name Owner
pfc_n_cst_winsrv_statusbar.of_setbarposition pfc_n_cst_winsrv_statusbar
pfc_n_cst_winsrv_statusbar.of_barreset pfc_n_cst_winsrv_statusbar

     
Name Owner
systemfunctions.isnull systemfunctions
systemfunctions.isvalid systemfunctions
systemfunctions.len systemfunctions
systemfunctions.trim systemfunctions
pfc_w_statusbar.of_modify pfc_w_statusbar

     
Full name
No Data

     
Name Scope
No Data