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

QuickList.AddValue

Adds a value to the list.

Component Version macOS Windows Linux Server iOS SDK
List 4.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "QuickList.AddValue"; ListRef; Text )   More

Parameters

Parameter Description Example
ListRef The reference to the list returned from QuickList.New function. $List
Text The text to add. "Hello"

Result

Returns OK or error.

Description

Adds a value to the list.
Building list via plugin can be much faster than building using FileMaker internal functions.

Examples

Add items to a list:

$listID = MBS( "QuickList.New"; "Hello¶World")
$r = MBS( "QuickList.AddValue"; $listID; "1234" )
$r = MBS( "QuickList.AddValue"; $listID; "5678" )
$list = MBS( "QuickList.GetList"; $listID)
$r = MBS("QuickList.Release"; $listID)

See also

Example Databases

Blog Entries

Created 21st September 2014, last changed 14th December 2023


QuickList.AddSQL - QuickList.And