of_isregistered


pfcdwsrv.pbl   >   pfc_n_cst_dwsrv_dropdownsearch   >   of_isregistered   

Full name pfc_n_cst_dwsrv_dropdownsearch.of_isregistered
Access public
Extend of boolean
Return value boolean
Prototype public function boolean of_isregistered(string)

Name Datatype
No Data

Name Datatype
ldwc_obj datawindowchild
li_count integer
li_rc integer
ls_coltype string
ls_displayvaluecoltype string
ls_displayvaluecolumn string
ls_editstyle string

public function boolean of_isregistered (string as_column);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  		of_IsRegistered
//
//	Access:  		public
//
//	Arguments:
//	as_column		Column to test if registered.
//
//	Returns:  		boolean
//	 True if the column is registered.
//	 False if not.
//
//	Description:
//	 Determine if the passed in column is registered.
//
//////////////////////////////////////////////////////////////////////////////
//
//	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_count, li_rc
string			ls_editstyle, ls_coltype
string			ls_displayvaluecolumn, ls_displayvaluecoltype
datawindowchild ldwc_obj

// Check arguments
If IsNull(as_column) Or Len(Trim(as_column))=0 Then 
	Return False
End If

If of_SearchItem(as_column) > 0 Then
	Return True
End If

Return False
end function

     
Name Owner
pfc_u_tabpg_dwproperty_srvdropdownsearch.pfc_propertyapply pfc_u_tabpg_dwproperty_srvdropdownsearch

     
Name Owner
systemfunctions.isnull systemfunctions
systemfunctions.len systemfunctions
systemfunctions.trim systemfunctions
pfc_n_cst_dwsrv_dropdownsearch.of_searchitem pfc_n_cst_dwsrv_dropdownsearch

     
Full name
No Data

     
Name Scope
No Data