Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Components
Assignee
Jim DeFabiaJim DeFabiaReporter
Gavin HallidayGavin HallidayPriority
MinorCompatibility
MinorFix versions
Due date
Feb 27, 2019
Details
Details
Components
Assignee
Jim DeFabia
Jim DeFabiaReporter
Gavin Halliday
Gavin HallidayPriority
Compatibility
Minor
Fix versions
Due date
Feb 27, 2019
Created February 4, 2019 at 10:50 AM
Updated March 11, 2019 at 8:32 AM
Resolved March 11, 2019 at 8:32 AM
From PR:
/**
Simple function that tests a full version string against the individual
platform version constants to determine if the platform's version is at
least as high as the argument.
*
Note that this function will be evaluated at compile-time if the argument
is a constant. This makes it useful for embedding in #IF() declarations:
*
#IF(PlatformVersionCheck('6.2.0-1'))
OUTPUT('Platform check TRUE');
#ELSE
OUTPUT('Platform check FALSE');
#END
*
@param v The minimum platform version in either xx.xx.xx, xx.xx,
or xx format (where xx is an integer and does not need
to be zero-padded); extra trailing characters (such as
the '-1' in the example above) are ignored; REQUIRED
*
@return If TRUE, the platform's current version is equal to or higher than
the argument.
*/