ListSelect

Note: This page includes content based on the F1 documentation for Centura development. It may be partially converted to support APF development, but should be regarded to be of uncertain actuality. It is provided as is. Eventually, it should be replaced by documentation available from within Visual Studio.

SalNumber ListSelect( SalNumber nSelect )

The ListSelect selects all items, deselects all items or inverts the selection of items in the list. depending on the value of the nSelect.

Parameters

Name Description
SalNumber nSelect Const.LIST_SelectAll, Const.LIST_SelectNone, Const.LIST_SelectInvert.

Returns

This method does not return a value.

Example

On SAM_Click
   Call lbEmployeeBenifits.ListSelect( LIST_SelectAll )
C# code
// Select all the items in the list
this.ListSelect(Const.LIST_SelectAll);