FM.CF.Parameter
---------------

Queries function parameter.

| Component | Version | macOS | Windows | Linux | Server | iOS SDK |
|---|---|---|---|---|---|---|
| [FM](component_FM.md) | [11.3](newinversion113.md) | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |

MBS( "FM.CF.Parameter"; Index ) 

**MBS**( **"FM.CF.Parameter";** /\* Queries function parameter. \*/  
**$Index**) /\* The index of the parameter. \*/ 

### Parameters

| Parameter | Description | Example |
|---|---|---|
| Index | The index of the parameter. |  |

### Result

Returns value or error.

### Description

Queries function parameter.  
Used internally for FM.[CF](CF.md) function to provide parameter values.  
  
Within the custom function you can use ParameterIndex to learn about the index of the first parameter. And with ParameterCount you know the number of parameters passed.  
### Examples

Query first parameter:

 MBS ( "FM.[CF](CF.md).Parameter"; ParameterIndex )  
Query second parameter:

 MBS ( "FM.[CF](CF.md).Parameter"; ParameterIndex +1 )  
Query last parameter:

 MBS ( "FM.[CF](CF.md).Parameter"; ParameterIndex + ParameterCount - 1 )  
### See also

- [FM.CF](FMCF.md)

### Release notes

- **Version 11.4**
    - Added [FM.CF.Parameter](https://www.mbsplugins.eu/FMCFParameter.shtml) function.

### Blog Entries

- [MBS FileMaker Plugin, version 11.4pr1](https://www.mbsplugins.de/archive/2021-08-02/MBS_FileMaker_Plugin_version_1/monkeybreadsoftware_blog_filemaker)

This function is free to use.

Created 13th July 2021 , last changed 2nd August 2021

  
[FM.CF](FMCF.md) - [FM.ChooseDictionary](FMChooseDictionary.md)

[HTML Version](FMCFParameter.shtml)