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