Description
TPSCFilterFunc type is the enumeration of codes for functions that can be calculated by the expression parser/evaluator. Use PSCDecodeFuncName function to obtain the code of the function by its name and PSCRunFunction to obtain the result of the function processing. The following table describes each value: Value - Description
FUnknown - Unknown function FUpper - Returns a copy of a string in uppercase. Flower - Converts an ASCII string to lowercase. FSubStr - Returns a substring of a string or a segment of a dynamic array. FTrim - Trims leading and trailing spaces and control characters from a string. FTrimLeft - Trims leading spaces and control characters from a string. FTrimRight - Trims trailing spaces and control characters from a string. FYear - Obtains the year from DataTime value. FMonth - Obtains the month from DataTime value. FDay - Obtains the day from DataTime value. FHour - Obtains the hours from DataTime value. FMinute - Obtains the minutes from DataTime value. FSecond - Obtains the seconds from DataTime value. FGetDate - Returns the current date. FDate - Extracts the date part of DataTime value. FTime - Extracts the time part of DataTime value.