of_isexclude


pfcapsrv.pbl   >   pfc_n_cst_lvsrv_sort   >   of_isexclude   

Full name pfc_n_cst_lvsrv_sort.of_isexclude
Access public
Extend of boolean
Return value boolean
Prototype public function boolean of_isexclude(integer)

Name Datatype
No Data

Name Datatype
lal_align alignment
li_width Integer
ls_label string

public function boolean of_isexclude (integer ai_column);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  		of_IsExclude
//
//	Access:    		Public
//
//	Arguments:
//	ai_column			The column to check for exclusion
//
//	Returns:   		Boolean
//   					True if it succeed
//						False if not excluded
//
//	Description:  	Checks the column to see if it is elgible for sorting.
//
//////////////////////////////////////////////////////////////////////////////
//
//	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.
//
//////////////////////////////////////////////////////////////////////////////
Integer		li_width
string		ls_label
alignment	lal_align

If Not IsValid(ilv_requestor) Then Return False
If IsNull(ai_column) or (ai_column < 0) Then Return False

// Get the name of the column in question
ilv_requestor.GetColumn(ai_column, ls_label, lal_align, li_width)

Return of_isExclude(ls_label)
end function

     
Name Owner
pfc_n_cst_lvsrv_sort.pfc_columnclick pfc_n_cst_lvsrv_sort

     
Name Owner
listview.getcolumn listview
systemfunctions.isnull systemfunctions
systemfunctions.isvalid systemfunctions
pfc_n_cst_lvsrv_sort.of_isexclude pfc_n_cst_lvsrv_sort

     
Full name
No Data

     
Name Scope
No Data