Exemple #1
0
 public NumericFunctionRef(NumericSuppliedFunction _suppliedFunction, NumericExpression arg)
 {
     numericSuppliedFunctionName = _suppliedFunction;
     argument = arg;
     refType  = FunctionRefType.NUMERICSUPPLIEDFUNCTION;
 }
Exemple #2
0
 public NumericFunctionRef(NumericSuppliedFunction _suppliedFunction)
 {
     numericSuppliedFunctionName = _suppliedFunction;
     refType = FunctionRefType.NUMERICSUPPLIEDFUNCTION;
 }
Exemple #3
0
 public NumericFunctionRef(string _numericdefinedfunctionname, NumericExpression arg)
 {
     numericDefinedFunctionName = _numericdefinedfunctionname;
     argument = arg;
     refType  = FunctionRefType.NUMERICDEFINEDFUNCTION;
 }
Exemple #4
0
 public NumericFunctionRef(string _numericdefinedfunctionname)
 {
     numericDefinedFunctionName = _numericdefinedfunctionname;
     refType = FunctionRefType.NUMERICDEFINEDFUNCTION;
 }