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
- ListDialog.AddItemToList
- ListDialog.ColumnCount
- ListDialog.GetColumnHeader
- ListDialog.GetColumnWidth
- ListDialog.SetColumnAlignment
- ListDialog.SetColumnHeader
- ListDialog.SetColumnWidth
Release notes
- Version 9.2
- Added ListDialog.ColumnCount and ListDialog.SetColumnCount for multi column list dialogs.
Blog Entries
- MBS Plugin Advent calendar: 22 - ListDialog
- Was gibt es neues bei MBS Version 9.2
- MBS FileMaker Plugin, version 9.2pr5
- List Dialogs with headers
- List Dialogs with multiple columns
This function is free to use.
Created 27th April 2019, last changed 16th December 2020