of_setdelimiter


pfcapsrv.pbl   >   pfc_n_cst_lvsrv   >   of_setdelimiter   

Full name pfc_n_cst_lvsrv.of_setdelimiter
Access public
Extend of integer
Return value integer
Prototype public function integer of_setdelimiter(string)

Name Datatype
No Data

Name Datatype
No Data

public function integer of_setdelimiter (string as_delimiter);//////////////////////////////////////////////////////////////////////////////
//
//	Function:	of_SetDelimiter
//
//	Access:		public
//
//	Arguments:
//	as_delimiter   The delimiter used to differentiate the keys of the compound key
//
//	Returns:		integer
//	SUCCESS = 1
//	ERROR = -1
//
//	Description:
//	Sets delimiter used to differentiate the keys placed in the data attribute of
//	the listview item
//
//////////////////////////////////////////////////////////////////////////////
//
//	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 IsNull(as_delimiter) or as_delimiter = "" Then
	Return -1
End If

is_delimiter = as_delimiter

return 1
end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.isnull systemfunctions

     
Full name
No Data

     
Name Scope
No Data