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:
9.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
QuickList.AddValue
Adds a value to the list.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| List | 4.4 | Yes | Yes | Yes | Yes | Yes |
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.Free"; $listID)
See also
- List.AddValue
- QuickList.AddList
- QuickList.AddMultiValue
- QuickList.AndColumn
- QuickList.Free
- QuickList.GetList
- QuickList.GetValue
- QuickList.HasValue
- QuickList.New
- QuickList.SetValue
Example Databases
Blog Entries
Created 21st September 2014, last changed 21st September 2014
QuickList.AddSQL - QuickList.And
Feedback: Report problem or ask question.
Links
MBS Xojo blog