Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

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

This function is free to use.

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


ListDialog.SetColumnAlignment - ListDialog.SetColumnHeader