
These properties can be set or read from any list
item whose Implementation Class property is set to:
oracle.forms.fd.LAF_XP_TList

Clear the selected values.
property value: none
Set_Custom_Property( '
', 1,
'CLEAR_LIST_SELECTION', '' ) ;
Returns the list orientation (only with enhanced Tlist)
varchar := Get_Custom_Property(
'
', 1, 'GET_LIST_ORIENTATION' ) ;
The possible return values can be:
·
VERTICAL 
·
VERTICAL_WRAP 
·
HORIZONTAL_WRAP 
Returns the comma delimited list of selected indexes
varchar2 := Get_Custom_Property(
'
', 1, 'GET_LIST_SELECTION' ) ;
If the user has selected the 1st, 3rd and 5th
value the method will return : 1,3,5
Returns a varchar2 that indicates if the multi-selection is allowed for
the list item
Returned value van be TRUE or FALSE
varchar2 := Get_Custom_Property( '
', 1,
'GET_MULTI_SELECTION' ) ;
Returns a varchar2 that indicates if the enhanced list is sorted
Returned value van be TRUE or FALSE
varchar2 := Get_Custom_Property( '
', 1,
'GET_SORTED_LIST' ) ;
Set/unset the enhanced (Swing) Tlist
property value : true | false.
Set the value to false to get the native Forms Tlist widget.
Set it to true to overload the native Forms Tlist with a Swing list
widget.
Set_Custom_Property( '
', 1,
'SET_ENHANCED', 'true' ) ;
Idem as SET_ENHANCED but for every Tlist of the current module.
Set the enhanced Tlist orientation.
Allowed values:
·
VERTICAL 
·
VERTICAL_WRAP 
·
HORIZONTAL_WRAP 
Without indication, the Tlist is created with a default value of :
VERTICAL
Set_Custom_Property( '
', 1,
'SET_LIST_ORIENTATION', 'VERTICAL_WRAP' ) ;
Set the multi-selection flag.
Allowed values:
·
True : you can select more than one value in the list
·
False : you cannot select more then one value
Without indication, the Tlist is created with a default value of : false
Set_Custom_Property( '
', 1,
'SET_MULTI_SELECTION', 'true' ) ;
If the value is set to true, you can get the list of selected indexes
with the GET_LIST_SELECTION method.
Set the sort flag (on
enhanced Tlist only).
Allowed values:
·
True : the Tlist is sorted
·
False : the Tlist is not sorted
Without indication, the Tlist is created with a default value of : false
Set_Custom_Property( '
', 1,
'SET_SORTED_LIST', 'true' ) ;
Turn ON/OFF the debug messages.
By default the all logs are OFF.
Allowed values are : true or false.
Set_Custom_Property( '
', 1,
'SET_DEBUG', 'true' ) ;