Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 10.1   10.2   10.3   10.4   10.5   11.0   11.1   11.2   11.3   11.4    Statistic    FMM    Blog  

ListDialog.SetColumnCount

Sets column count.

Component Version macOS Windows Linux Server iOS SDK
ListDialog 9.2 ✅ Yes ✅ Yes ❌ No ❌ No ❌ No
MBS( "ListDialog.SetColumnCount"; Value )   More

Parameters

Parameter Description Example
Value The new column count. 2

Result

Returns OK or error.

Description

Sets column count.
Currently we support up to 5 columns.
Default is 1 column unless you change it.
Delimiter for data is tab character, e.g. Char(9)

Examples

Set column headers:

Set Variable [ $r ; Value: MBS("ListDialog.SetColumnCount"; 2) ]
Set Variable [ $r ; Value: MBS("ListDialog.SetColumnHeader"; 0; "Column left") ]
Set Variable [ $r ; Value: MBS("ListDialog.SetColumnHeader"; 1; "Column right") ]

Use two columns and fill an item to the list:

Set Variable [ $r ; Value: MBS("ListDialog.SetColumnCount"; 2) ]
Set Variable [ $r ; Value: MBS("ListDialog.AddItemToList"; "1st Column" & Char(9) & "2nd Column"; "Tag123") ]

See also

Release notes

Blog Entries

Created 27th April 2019, last changed 16th December 2020


ListDialog.SetColumnAlignment - ListDialog.SetColumnHeader

Feedback: Report problem or ask question.