コード例 #1
0
        internal override string DisplayValue(KeyWordInfomation info)
        {
            DelFunctionHandle degFHandle = function;

            if (degFHandle != null)
            {
                if (_priorityLevel > 0)
                {
                    return(degFHandle(this, info));
                }
                return("(" + degFHandle(this, info) + ")");
            }

            return(null);
        }
コード例 #2
0
 public BQLComparItem(DelFunctionHandle function, IList <BQLValueItem> parameters)
 {
     this.parameters = parameters;
     this.function   = function;
     //this.valueType = BQLValueType.Function;
 }