Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
Enables checking variable declarations in FileMaker Scripts.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
SyntaxColoring | 3.5 | ✅ Yes | ❌ No | ❌ No | ❌ No | ❌ No |
none
Returns OK on success.
Enable or disable checking variable declarations:
If (Enable)
Set Variable [$r; MBS( "SyntaxColoring.CheckVariableDeclaration.Enable" )]
else
Set Variable [$r; MBS( "SyntaxColoring.CheckVariableDeclaration.Disable" )]
end if
Use @variable to declare variable:
# Declare variable via comment as plugin has no way to know easily that $test is defined here
# @variable $test
Insert Current Time [ Select ; Target: $test ]
Declare variable via comment:
# Declare variables via comment as plugin has no way to know easily that $test is defined here
# @parameter $param1
# @parameter $param2
Set Variable [ $r ; Value: Let ( [ parameters = Get(ScriptParameter); $param1 = GetValue(parameters; 1); $param2 = GetValue(parameters; 2) ] ; 1 ) ]
Declare multiple variables:
# @var $FirstName, $LastName, $City
This function is free to use.
Created 18th August 2014, last changed 10th October 2023
SyntaxColoring.CheckVariableDeclaration.Disable - SyntaxColoring.CheckVariableDeclaration.Enabled