Files
2018-03-27 17:27:28 +02:00

12644 lines
511 KiB
XML

<?xml version="1.0"?>
<doc>
<assembly>
<name>FarPoint.CalcEngine</name>
</assembly>
<members>
<member name="T:FarPoint.CalcEngine.CalcArray">
<summary>
Represents an array of constants during the evaluation of
a formula.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcArray.GetValue(System.Int32,System.Int32)">
<summary>
Gets the value at the specified position in the array.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<returns>Value at the specified position</returns>
</member>
<member name="P:FarPoint.CalcEngine.CalcArray.RowCount">
<summary>
Gets the number of rows in the array.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcArray.ColumnCount">
<summary>
Gets the number of columns in the array.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CalcMissingArgument">
<summary>
Represents a missing argument during the evaluation of a formula.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcMissingArgument.#ctor">
<summary>
Creates a new instance of the CalcMissingArgument class.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CalcHelper">
<summary>
Represents the methods that are useful during function evaluations.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.CalcHelper.MAX_ARGS">
<summary>
Maximum number of arguments for a function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcHelper.ArgumentExists(System.Object[],System.Int32)">
<summary>
Determines if the argument list contains the specified argument and the specified
argument is not an instance of CalcMissingArgument.
</summary>
<param name="args">Argument list</param>
<param name="index">Index</param>
<returns>true if specified argument was not omitted, otherwise false</returns>
</member>
<member name="T:FarPoint.CalcEngine.CalcConvert">
<summary>
Represents the converting of a value to a specified data type.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.IsError(System.Object)">
<summary>
Determines whether the specified value is a calculation error.
</summary>
<param name="value">Value of which to determine data type</param>
<returns>True if the value is a calculation error; otherwise false</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.IsNumber(System.Object)">
<summary>
Determines whether the specified value is a numeric data type.
</summary>
<param name="value">Value of which to determine data type</param>
<returns>True if the value is numeric; otherwise false</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToResult(System.Double)">
<summary>
Converts a double to an object.
</summary>
<param name="value">Value to convert</param>
<returns>Object value equivalent to the specified value</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToBool(System.Object)">
<summary>
Converts the specified value to a boolean value.
</summary>
<param name="value">Value to convert</param>
<returns>Boolean value equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToInt(System.Object)">
<summary>
Converts the specified value to a 32-bit signed integer.
</summary>
<param name="value">Value to convert</param>
<returns>32-bit signed integer equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToLong(System.Object)">
<summary>
Converts the specified value to a 64-bit signed integer.
</summary>
<param name="value">Value to convert</param>
<returns>64-bit signed integer equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToDouble(System.Object)">
<summary>
Converts the specified value to a double-precision, floating-point number.
</summary>
<param name="value">Value to convert</param>
<returns>Double-precision, floating-point number equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToString(System.Object)">
<summary>
Converts the specified value to a string representation.
</summary>
<param name="value">Value to convert</param>
<returns>String representation of the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToDateTime(System.Object)">
<summary>
Converts the specified value to a DateTime value.
</summary>
<param name="value">Value to convert</param>
<returns>DateTime value equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToTimeSpan(System.Object)">
<summary>
Converts the specified value to a TimeSpan value.
</summary>
<param name="value">Value to convert</param>
<returns>TimeSpan value equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToArray(System.Object)">
<summary>
Converts the specified value to a CalcArray.
</summary>
<param name="value">Value to convert</param>
<returns>Double value equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="T:FarPoint.CalcEngine.CalcConvert.ConcreteArrayWrappingScalar">
<summary>
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CalcConvert.ConcreteArrayWrappingReference">
<summary>
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CalcError">
<summary>
Represents calculation errors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcError.#ctor(System.String)">
<summary>
Creates a new instance of the CalcError class.
</summary>
<param name="text">Text representation of the error</param>
</member>
<member name="M:FarPoint.CalcEngine.CalcError.ToString">
<summary>
Returns a string representation of the error.
</summary>
<returns>String representation of the error</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcError.Parse(System.String)">
<summary>
Converts the string to an error.
</summary>
<param name="s">String to be parsed</param>
<returns>Error represented by the string</returns>
<exception cref="T:System.FormatException">String does not represent an error.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcError.TryParse(System.String,FarPoint.CalcEngine.CalcError@)">
<summary>
Converts a string to an error.
</summary>
<param name="s">String to be parsed</param>
<param name="error">Error represented by the string</param>
<returns>True if the string is converted successfully; false otherwise</returns>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.DivideByZero">
<summary>
Occurs when a formula divides by zero.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.NotAvailable">
<summary>
Occurs when a value is not available.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.Name">
<summary>
Occurs when an unrecognized name is encountered.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.Null">
<summary>
Occurs when you specify an intersection of two intersections
that do not intersect.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.Number">
<summary>
Occurs when a problem occurs with a number in a formula.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.Reference">
<summary>
Occurs when a cell reference is invalid.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.Value">
<summary>
Occurs when the wrong type of argument or operand is used.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CalcErrorConverter">
<summary>
Converts CalcError objects to and from other data types.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcErrorConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Determines whether the specified type can be converted to a CalcError object.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="sourceType">Type</param>
<returns>True if sourceType is String; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcErrorConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts a string to a new CalcError object.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<returns>New CalcError object</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcErrorConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Determines whether a CalcError object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a CalcError object can be converted to the specified type; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcErrorConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the CalcError object to a string.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>String representation of a CalcError object</returns>
</member>
<member name="T:FarPoint.CalcEngine.CalcReference">
<summary>
Represents a cell or range reference during the evaluation of
a formula.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcReference.GetValue(System.Int32,System.Int32)">
<summary>
Gets the value at the specified position in the cell or range reference.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<returns>Value at the specified position</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcReference.IsSubtotal(System.Int32,System.Int32)">
<summary>
Determines whether the value at the specified position is a subtotal.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<returns>True if the value at the specified position is a subtotal; otherwise false</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcReference.GetSource">
<summary>
Returns a CalcReference to the entire sheet.
</summary>
<returns></returns>
</member>
<member name="P:FarPoint.CalcEngine.CalcReference.Row">
<summary>
Gets the index of the first row in the cell or range reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcReference.Column">
<summary>
Gets the index of the first column in the cell or range reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcReference.RowCount">
<summary>
Gets the number of rows in the cell or range reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcReference.ColumnCount">
<summary>
Gets the number of columns in the cell or range reference.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Expression">
<summary>
Represents the abstract class from which all expression types derive.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ParenthesesExpression">
<summary>
Represents an expression type for parentheses surrounding a specified expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ParenthesesExpression.#ctor(FarPoint.CalcEngine.Expression)">
<summary>
Creates an new expression with parentheses surrounding a specified expression.
</summary>
<param name="arg">Expression inside the parentheses</param>
<exception cref="T:System.ArgumentNullException">arg is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.ParenthesesExpression.Arg">
<summary>
Gets the expression inside the parentheses.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ConstantExpression">
<summary>
Represents the abstract class from which all constant value expression types derive.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BooleanExpression">
<summary>
Represents an expression type with a boolean constant value as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BooleanExpression.#ctor(System.Boolean)">
<summary>
Creates a new expression with a boolean constant value.
</summary>
<param name="value">Boolean value</param>
</member>
<member name="P:FarPoint.CalcEngine.BooleanExpression.Value">
<summary>
Gets the boolean value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BooleanExpression.BooleanValue">
<summary>
Gets the boolean value as a boolean.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DoubleExpression">
<summary>
Represents an expression with a double constant value as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DoubleExpression.#ctor(System.Double)">
<summary>
Creates a new expression with a double constant value.
</summary>
<param name="value">Double value</param>
</member>
<member name="P:FarPoint.CalcEngine.DoubleExpression.Value">
<summary>
Gets the double value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DoubleExpression.DoubleValue">
<summary>
Gets the double value as a double.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.StringExpression">
<summary>
Represents an expression with a string constant value as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StringExpression.#ctor(System.String)">
<summary>
Creates a new expression with a string constant value.
</summary>
<param name="value">String value</param>
<exception cref="T:System.ArgumentNullException">value is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.StringExpression.Value">
<summary>
Gets the string value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StringExpression.StringValue">
<summary>
Gets the string value as a string.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ErrorExpression">
<summary>
Represents an expression with an error constant value as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ErrorExpression.#ctor(FarPoint.CalcEngine.CalcError)">
<summary>
Creates a new expression with an error constant value.
</summary>
<param name="value">Error value</param>
<exception cref="T:System.ArgumentNullException">value is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.ErrorExpression.Value">
<summary>
Gets the error value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ErrorExpression.ErrorValue">
<summary>
Gets the error value as a CalcError object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ArrayExpression">
<summary>
Represents an expression with an array of constant values as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ArrayExpression.#ctor(System.Object[0:,0:])">
<summary>
Creates an expression with an array of constant values.
</summary>
<param name="values">Array of constant values</param>
<exception cref="T:System.ArgumentNullException">values is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.ArrayExpression.Value">
<summary>
Gets the array value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ArrayExpression.ArrayValue">
<summary>
Gets the array value as a CalcArray object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ArrayExpression.ConcreteArray">
<summary>
Represents a concrete implementation of a CalcArray object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MissingArgumentExpression">
<summary>
Represents an expression with a missing argument constant value as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MissingArgumentExpression.#ctor">
<summary>
Creates a new expression with a missing argument constant value.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MissingArgumentExpression.Value">
<summary>
Gets the missing argument value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MissingArgumentExpression.MissingArgumentValue">
<summary>
Gets the missing argument value as a CalcMissingArgument object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ReferenceExpression">
<summary>
Represents the abstract class from which all reference expression types derive.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.Row">
<summary>
Gets the starting row coordinate of the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.Column">
<summary>
Gets the starting column coordinate of the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.RowCount">
<summary>
Gets the number of rows in the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.ColumnCount">
<summary>
Gets the number of columns in the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.RowRelative">
<summary>
Determines whether the row coordinates are relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.ColumnRelative">
<summary>
Determines whether the column coordinates are relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CellExpression">
<summary>
Represents an expression with a cell reference as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CellExpression.#ctor(System.Int32,System.Int32)">
<summary>
Creates a new expression with a cell reference with absolute coordinates.
</summary>
<param name="row">Row coordinate of cell</param>
<param name="column">Column coordinate of cell</param>
</member>
<member name="M:FarPoint.CalcEngine.CellExpression.#ctor(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new expression with a cell reference.
</summary>
<param name="row">Row coordinate of cell</param>
<param name="column">Column coordinate of cell</param>
<param name="rowRelative">Whether row coordinate is relative</param>
<param name="columnRelative">Whether the column coordinate is relative</param>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.Row">
<summary>
Gets the row index of the cell.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.Column">
<summary>
Gets the column index of the cell.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.RowCount">
<summary>
Gets the number of rows (1 in this implementation).
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.ColumnCount">
<summary>
Gets the number of columns (1 in this implementation).
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.RowRelative">
<summary>
Determines whether the row coordinate is relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.ColumnRelative">
<summary>
Determines whether the column coordinate is relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RangeExpression">
<summary>
Represents an expression with a range reference as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RangeExpression.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new expression with a range reference expression with absolute coordinates.
</summary>
<param name="row">Starting row coordinate of the range</param>
<param name="column">Starting column coordinate of the range</param>
<param name="rowCount">Number of rows in the range</param>
<param name="columnCount">Number of columns in the range</param>
</member>
<member name="M:FarPoint.CalcEngine.RangeExpression.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new expression representing a range reference expression.
</summary>
<param name="row">Starting row coordinate of the range</param>
<param name="column">Starting column coordinate of the range</param>
<param name="rowCount">Number of rows in the range</param>
<param name="columnCount">Number of columns in the range</param>
<param name="rowRelative">Whether the row coordinates are relative or absolute</param>
<param name="columnRelative">Whether the column coordinates are relative or absolute</param>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.Row">
<summary>
Gets the starting row coordinate of the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.Column">
<summary>
Gets the starting column coordinate of the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.RowCount">
<summary>
Gets the number of rows in the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.ColumnCount">
<summary>
Gets the number of columns in the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.RowRelative">
<summary>
Determines whether the row coordinates are relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.ColumnRelative">
<summary>
Determines whether the column coordinates are relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExternalReferenceExpression">
<summary>
Represents the abstract class from which all external reference expression types derive.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.Source">
<summary>
Gets the source of the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.Row">
<summary>
Gets the starting row coordinate of the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.Column">
<summary>
Gets the starting column coordinate of the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.RowCount">
<summary>
Gets the number of rows in the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.ColumnCount">
<summary>
Gets the number of columns in the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.RowRelative">
<summary>
Determines whether the row coordinates are relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.ColumnRelative">
<summary>
Determines whether the column coordinates are relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExternalCellExpression">
<summary>
Represents an expression with an external cell reference as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExternalCellExpression.#ctor(System.Object,System.Int32,System.Int32)">
<summary>
Creates a new expression with an external cell reference with absolute coordinates.
</summary>
<param name="source">Source of the cell</param>
<param name="row">Row coordinate of the cell</param>
<param name="column">Column coordinate of the cell</param>
</member>
<member name="M:FarPoint.CalcEngine.ExternalCellExpression.#ctor(System.Object,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new expression representing an external cell reference.
</summary>
<param name="source">Source of the cell</param>
<param name="row">Row coordinate of the cell</param>
<param name="column">Column coordinate of the cell</param>
<param name="rowRelative">Whether the row coordinate is relative</param>
<param name="columnRelative">Whether the column coordinate is relative</param>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.Source">
<summary>
Gets the source of the cell.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.Row">
<summary>
Gets the row index of the cell.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.Column">
<summary>
Gets the column index of the cell.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.RowCount">
<summary>
Gets the number of rows (1 in this implementation).
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.ColumnCount">
<summary>
Gets the number of columns (1 in this implementation).
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.RowRelative">
<summary>
Determines whether the row coordinate is relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.ColumnRelative">
<summary>
Determines whether the column coordinate is relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExternalRangeExpression">
<summary>
Represents an expression with an external range reference as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExternalRangeExpression.#ctor(System.Object,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new expression with an external range reference with absolute coordinates.
</summary>
<param name="source">Source of the range</param>
<param name="row">Starting row coordinate of the range</param>
<param name="column">Starting column coordinate of the range</param>
<param name="rowCount">Number of rows in the range</param>
<param name="columnCount">Number of columns in the range</param>
</member>
<member name="M:FarPoint.CalcEngine.ExternalRangeExpression.#ctor(System.Object,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new expression representing an external range reference.
</summary>
<param name="source">Source of the range</param>
<param name="row">Starting row coordinate of the range</param>
<param name="column">Starting column coordinate of the range</param>
<param name="rowCount">Number of rows in the range</param>
<param name="columnCount">Number of columns in the range</param>
<param name="rowRelative">Whether the row coordinates are relative</param>
<param name="columnRelative">Whether the column coordinates are relative</param>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.Source">
<summary>
Gets the source of the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.Row">
<summary>
Gets the starting row coordinate of the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.Column">
<summary>
Gets the starting column coordinate of the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.RowCount">
<summary>
Gets the number of rows in the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.ColumnCount">
<summary>
Gets the number of columns in the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.RowRelative">
<summary>
Determines whether the row coordinates are relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.ColumnRelative">
<summary>
Determines whether the column coordinates are relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NameExpression">
<summary>
Represents an expression with a named variable as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NameExpression.#ctor(System.String)">
<summary>
Creates a new expression with a named variable.
</summary>
<param name="name">Named variable</param>
<exception cref="T:System.ArgumentNullException">name is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.NameExpression.Name">
<summary>
Gets the text representation of the named variable.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.UnaryOperatorExpression">
<summary>
Represents an expression with a unary operator applied to a single operand as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.UnaryOperatorExpression.#ctor(FarPoint.CalcEngine.UnaryOperatorInfo,FarPoint.CalcEngine.Expression)">
<summary>
Creates an expression representing a unary operator applied to a single operand.
</summary>
<param name="oper">Operator</param>
<param name="arg">Operand</param>
<exception cref="T:System.ArgumentNullException">oper or arg is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.UnaryOperatorExpression.Operator">
<summary>
Gets the operator for the expression.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.UnaryOperatorExpression.Arg">
<summary>
Gets the operand for the expression.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BinaryOperatorExpression">
<summary>
Represents an expression with a binary operator applied to a pair of operands as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BinaryOperatorExpression.#ctor(FarPoint.CalcEngine.BinaryOperatorInfo,FarPoint.CalcEngine.Expression,FarPoint.CalcEngine.Expression)">
<summary>
Creates a new expression with a binary operator applied to a pair of operands.
</summary>
<param name="oper">Operator</param>
<param name="arg0">Left-side operand</param>
<param name="arg1">Right-side operand</param>
<exception cref="T:System.ArgumentNullException">oper or arg0 or arg1 is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.BinaryOperatorExpression.Operator">
<summary>
Gets the operator for the expression.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BinaryOperatorExpression.Arg0">
<summary>
Gets the left-side operand for the expression.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BinaryOperatorExpression.Arg1">
<summary>
Gets the right-side operand for the expression.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FunctionExpression">
<summary>
Represents an expression with a function applied to a list of parameters as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FunctionExpression.#ctor(System.String,FarPoint.CalcEngine.Expression[])">
The expression uses dynamic function binding (that is, function implementation is determined
at evaluation time). Dynamic binding is commonly used for user defined functions.
<summary>
Creates a new expression representing a function applied to a list of parameters.
</summary>
<param name="functionName">Function name</param>
<param name="args">List of parameters</param>
<exception cref="T:System.ArgumentNullException">functionName or args is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="M:FarPoint.CalcEngine.FunctionExpression.#ctor(FarPoint.CalcEngine.FunctionInfo,FarPoint.CalcEngine.Expression[])">
The expression uses static function binding (i.e. function implementation is determined at parse time).
Static binding is commonly used for native functions.
<summary>
Creates a new expression representing a function applied to a list of parameters.
</summary>
<param name="functionInfo">Function</param>
<param name="args">List of parameters</param>
<exception cref="T:System.ArgumentNullException">functionInfo or args is a null reference (Nothing in Visual Basic)</exception>
<exception cref="T:System.ArgumentException">functionInfo does not accept the number of parameters found in args</exception>
</member>
<member name="M:FarPoint.CalcEngine.FunctionExpression.GetArg(System.Int32)">
<summary>
Returns the specified parameter being passed to the function.
</summary>
<param name="i">Index of the parameter (or argument)</param>
<returns>Parameter</returns>
</member>
<member name="P:FarPoint.CalcEngine.FunctionExpression.FunctionName">
<summary>
Gets the name of function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FunctionExpression.Function">
If dynamic binding was used then the returned value will be null.
If static binding was used then the returned value will be non-null.
<summary>
Gets the implementation (dynamic or static function binding) of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FunctionExpression.ArgCount">
<summary>
Gets the number of parameters being passed to the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ArrayExpressionFactory">
<summary>
Represents a means of creating ArrayExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ArrayExpressionFactory.CreateArrayExpression(System.Object[0:,0:])">
<summary>
Creates a new ArrayExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BooleanExpressionFactory">
<summary>
Represents a means of creating BooleanExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BooleanExpressionFactory.CreateBooleanExpression(System.Boolean)">
<summary>
Creates a new BooleanExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DoubleExpressionFactory">
<summary>
Represents a means of creating DoubleExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DoubleExpressionFactory.CreateDoubleExpression(System.Double)">
<summary>
Creates a new DoubleExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ErrorExpressionFactory">
<summary>
Represents a means of creating ErrorExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ErrorExpressionFactory.CreateErrorExpression(FarPoint.CalcEngine.CalcError)">
<summary>
Creates a new ErrorExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ParenthesesExpressionFactory">
<summary>
Represents a means of creating ParenthesesExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ParenthesesExpressionFactory.CreateParenthesesExpression(FarPoint.CalcEngine.Expression)">
<summary>
Creates a new ParenthesesExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CellExpressionFactory">
<summary>
Represents a means of creating CellExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CellExpressionFactory.CreateCellExpression(System.Int32,System.Int32)">
<summary>
Creates a new CellExpression object.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CellExpressionFactory.CreateCellExpression(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new CellExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RangeExpressionFactory">
<summary>
Represents a means of creating RangeExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RangeExpressionFactory.CreateRangeExpression(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new RangeExpression object.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RangeExpressionFactory.CreateRangeExpression(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new RangeExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExternalCellExpressionFactory">
<summary>
Represents a means of creating ExternalCellExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExternalCellExpressionFactory.CreateExternalCellExpression(System.Object,System.Int32,System.Int32)">
<summary>
Creates a new ExternalCellExpression object.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExternalCellExpressionFactory.CreateExternalCellExpression(System.Object,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new ExternalCellExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExternalRangeExpressionFactory">
<summary>
Represents a means of creating ExternalRangeExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExternalRangeExpressionFactory.CreateExternalRangeExpression(System.Object,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new ExternalRangeExpression object.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExternalRangeExpressionFactory.ExternalCreateRangeExpression(System.Object,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new ExternalRangeExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.UnaryOperatorExpressionFactory">
<summary>
Represents a means of creating UnaryOperatorExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.UnaryOperatorExpressionFactory.CreateUnaryOperatorExpression(FarPoint.CalcEngine.UnaryOperatorInfo,FarPoint.CalcEngine.Expression)">
<summary>
Creates a new UnaryOperatorExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BinaryOperatorExpressionFactory">
<summary>
Represents a means of creating BinaryOperatorExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BinaryOperatorExpressionFactory.CreateBinaryOperatorExpression(FarPoint.CalcEngine.BinaryOperatorInfo,FarPoint.CalcEngine.Expression,FarPoint.CalcEngine.Expression)">
<summary>
Creates a new BinaryOperatorExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FunctionExpressionFactory">
<summary>
Represents a means of creating FunctionExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FunctionExpressionFactory.CreateFunctionExpression(FarPoint.CalcEngine.FunctionInfo,FarPoint.CalcEngine.Expression[])">
<summary>
Creates a new FunctionExpression object.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FpDescriptionAttribute.#ctor(System.String)">
<summary>
Creates a new FarPoint description attribute.
</summary>
<param name="id">Unique identifier</param>
</member>
<member name="P:FarPoint.CalcEngine.FpDescriptionAttribute.Description">
<summary>
Gets the description.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FpCategoryAttribute">
<summary>
Represents the FarPoint category attribute.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FpCategoryAttribute.#ctor(System.String)">
<summary>
Creates a new FarPoint category attribute.
</summary>
<param name="id">Unique identifier</param>
</member>
<member name="M:FarPoint.CalcEngine.FpCategoryAttribute.GetLocalizedString(System.String)">
<summary>
Gets the localized string.
</summary>
<param name="value">Value of string</param>
<returns></returns>
</member>
<member name="T:FarPoint.CalcEngine.FunctionInfo">
<summary>
Represents an abstract base class for defining functions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FunctionInfo.AcceptsError(System.Int32)">
<summary>
Determines whether the function accepts CalcError values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>True if the function accepts CalcError values for the specified argument; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.FunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Determines whether the function accepts CalcMissingArgument values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>True if the function accepts CalcReference values for the specified argument; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.FunctionInfo.AcceptsReference(System.Int32)">
<summary>
Determines whether the function accepts CalcReference values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>True if the function accepts CalcReference values for the specified argument; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.FunctionInfo.IgnoresValues(System.Int32)">
<summary>
Determines whether the function ignores cells values passed to the specified argument.
</summary>
<param name="i">Index of the argument</param>
</member>
<member name="M:FarPoint.CalcEngine.FunctionInfo.IsVolatile">
<summary>
Determines if the function is volatile.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FunctionInfo.Evaluate(System.Object[])">
<summary>
Returns the result of the function applied to the arguments.
</summary>
<param name="args">Arguments for the function evaluation</param>
<returns>Result of the function applied to the arguments</returns>
</member>
<member name="M:FarPoint.CalcEngine.FunctionInfo.Evaluate(System.Object[],System.Object)">
<summary>
Returns the result of the function applied to the arguments.
</summary>
<param name="args">Arguments for the function evaluation</param>
<param name="context">Context in which the evaluation occurs</param>
<returns>Result of the function applied to the arguments</returns>
</member>
<member name="M:FarPoint.CalcEngine.FunctionInfo.ToString">
<summary>
Returns the string representation of the function.
</summary>
<returns>String representation of the function</returns>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AbsFunction">
<summary>
Specifies an instance of the ABS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AccrIntFunction">
<summary>
Specifies an instance of the ACCRINT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AccrIntMFunction">
<summary>
Specifies an instance of the ACCRINTM function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AcosFunction">
<summary>
Specifies an instance of the ACOS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AcoshFunction">
<summary>
Specifies an instance of the ACOSH function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AndFunction">
<summary>
Specifies an instance of the AND function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AsinFunction">
<summary>
Specifies an instance of the ASIN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AsinhFunction">
<summary>
Specifies an instance of the ASINH function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AtanFunction">
<summary>
Specifies an instance of the ATAN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Atan2Function">
<summary>
Specifies an instance of the ATAN2 function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AtanhFunction">
<summary>
Specifies an instance of the ATANH function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AveDevFunction">
<summary>
Specifies an instance of the AVEDEV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AverageFunction">
<summary>
Specifies an instance of the AVERAGE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.BesselIFunction">
<summary>
Specifies an instance of the BESSELI function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.BesselJFunction">
<summary>
Specifies an instance of the BESSELJ function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.BesselKFunction">
<summary>
Specifies an instance of the BESSELK function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.BesselYFunction">
<summary>
Specifies an instance of the BESSELY function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.BetaDistFunction">
<summary>
Specifies an instance of the BETADIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.BetaInvFunction">
<summary>
Specifies an instance of the BETAINV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.BinomDistFunction">
<summary>
Specifies an instance of the BINOMDIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CeilingFunction">
<summary>
Specifies an instance of the CEILING function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CharFunction">
<summary>
Specifies an instance of the CHAR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ChiDistFunction">
<summary>
Specifies an instance of the CHIDIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ChiInvFunction">
<summary>
Specifies an instance of the CHIINV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ChiTestFunction">
<summary>
Specifies an instance of the CHITEST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ChooseFunction">
<summary>
Specifies an instance of the CHOOSE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CleanFunction">
<summary>
Specifies an instance of the CLEAN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CodeFunction">
<summary>
Specifies an instance of the CODE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ColumnsFunction">
<summary>
Specifies an instance of the COLUMNS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CombinFunction">
<summary>
Specifies an instance of the COMBIN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ConcatenateFunction">
<summary>
Specifies an instance of the CONCATENATE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ConfidenceFunction">
<summary>
Specifies an instance of the CONFIDENCE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CorrelFunction">
<summary>
Specifies an instance of the CORREL function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CosFunction">
<summary>
Specifies an instance of the COS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CoshFunction">
<summary>
Specifies an instance of the COSH function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CountBlankFunction">
<summary>
Specifies an instance of the COUNTBLANK function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CovarFunction">
<summary>
Specifies an instance of the COVAR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CritBinomFunction">
<summary>
Specifies an instance of the CRITBINOM function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DateFunction">
<summary>
Specifies an instance of the DATE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DateValueFunction">
<summary>
Specifies an instance of the DATEVALUE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DayFunction">
<summary>
Specifies an instance of the DAY function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Days360Function">
<summary>
Specifies an instance of the DAYS360 function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DbFunction">
<summary>
Specifies an instance of the DB function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DdbFunction">
<summary>
Specifies an instance of the DDB function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DegreesFunction">
<summary>
Specifies an instance of the DEGREES function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DevSqFunction">
<summary>
Specifies an instance of the DEVSQ function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DeltaFunction">
<summary>
Specifies an instance of the DELTA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DiscFunction">
<summary>
Specifies an instance of the DISC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DollarFunction">
<summary>
Specifies an instance of the DOLLAR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.EDateFunction">
<summary>
Specifies an instance of the EDATE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.EffectFunction">
<summary>
Specifies an instance of the EFFECT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.EoMonthFunction">
<summary>
Specifies an instance of the EOMONTH function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ErfFunction">
<summary>
Specifies an instance of the ERF function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ErfcFunction">
<summary>
Specifies an instance of the ERFC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ErrorTypeFunction">
<summary>
Specifies an instance of the ERRORTYPE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.EvenFunction">
<summary>
Specifies an instance of the EVEN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ExactFunction">
<summary>
Specifies an instance of the EXACT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ExpFunction">
<summary>
Specifies an instance of the EXP function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ExponDistFunction">
<summary>
Specifies an instance of the EXPONDIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FactFunction">
<summary>
Specifies an instance of the FACT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FactDoubleFunction">
<summary>
Specifies an instance of the FACTDOUBLE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FalseFunction">
<summary>
Specifies an instance of the FALSE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FDistFunction">
<summary>
Specifies an instance of the FDIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FindFunction">
<summary>
Specifies an instance of the FIND function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FInvFunction">
<summary>
Specifies an instance of the FINV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FisherFunction">
<summary>
Specifies an instance of the FISHER function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FisherInvFunction">
<summary>
Specifies an instance of the FISHERINV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FixedFunction">
<summary>
Specifies an instance of the FIXED function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FloorFunction">
<summary>
Specifies an instance of the FLOOR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ForecastFunction">
<summary>
Specifies an instance of the FORECAST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FTestFunction">
<summary>
Specifies an instance of the FTEST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FvFunction">
<summary>
Specifies an instance of the FV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FvScheduleFunction">
<summary>
Specifies an instance of the FVSCHEDULE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.GammaDistFunction">
<summary>
Specifies an instance of the GAMMADIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.GammaInvFunction">
<summary>
Specifies an instance of the GAMMAINV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.GammaLnFunction">
<summary>
Specifies an instance of the GAMMALN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.GcdFunction">
<summary>
Specifies an instance of the GCD function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.GeoMeanFunction">
<summary>
Specifies an instance of the GEOMEAN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.GeStepFunction">
<summary>
Specifies an instance of the GESTEP function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.HarMeanFunction">
<summary>
Specifies an instance of the HARMEAN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.HourFunction">
<summary>
Specifies an instance of the HOUR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.HypGeomDistFunction">
<summary>
Specifies an instance of the HYPGEOMDIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IfFunction">
<summary>
Specifies an instance of the IF function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IndexFunction">
<summary>
Specifies an instance of the INDEX function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IntFunction">
<summary>
Specifies an instance of the INT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.InterceptFunction">
<summary>
Specifies an instance of the INTERCEPT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IntRateFunction">
<summary>
Specifies an instance of the INTRATE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IpmtFunction">
<summary>
Specifies an instance of the IPMT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IrrFunction">
<summary>
Specifies an instance of the IRR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IsBlankFunction">
<summary>
Specifies an instance of the ISBLANK function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IsErrFunction">
<summary>
Specifies an instance of the ISERR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IsErrorFunction">
<summary>
Specifies an instance of the ISERROR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IsEvenFunction">
<summary>
Specifies an instance of the ISEVEN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IsLogicalFunction">
<summary>
Specifies an instance of the ISLOGICAL function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IsNAFunction">
<summary>
Specifies an instance of the ISNA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IsNonTextFunction">
<summary>
Specifies an instance of the ISNONTEXT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IsNumberFunction">
<summary>
Specifies an instance of the ISNUMBER function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IsOddFunction">
<summary>
Specifies an instance of the ISODD function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IsRefFunction">
<summary>
Specifies an instance of the ISREF function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IsTextFunction">
<summary>
Specifies an instance of the ISTEXT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.KurtFunction">
<summary>
Specifies an instance of the KURT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LargeFunction">
<summary>
Specifies an instance of the LARGE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LcmFunction">
<summary>
Specifies an instance of the LCM function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LeftFunction">
<summary>
Specifies an instance of the LEFT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LenFunction">
<summary>
Specifies an instance of the LEN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LnFunction">
<summary>
Specifies an instance of the LN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LogFunction">
<summary>
Specifies an instance of the LOG function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Log10Function">
<summary>
Specifies an instance of the LOG10 function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LogInvFunction">
<summary>
Specifies an instance of the LOGINV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LogNormDistFunction">
<summary>
Specifies an instance of the LOGNORMDIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LowerFunction">
<summary>
Specifies an instance of the LOWER function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MaxFunction">
<summary>
Specifies an instance of the MAX function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MaxAFunction">
<summary>
Specifies an instance of the MAXA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MedianFunction">
<summary>
Specifies an instance of the MEDIAN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MidFunction">
<summary>
Specifies an instance of the MID function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MinFunction">
<summary>
Specifies an instance of the MIN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MinAFunction">
<summary>
Specifies an instance of the MINA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MinuteFunction">
<summary>
Specifies an instance of the MINUTE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MIrrFunction">
<summary>
Specifies an instance of the MIRR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ModFunction">
<summary>
Specifies an instance of the MOD function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ModeFunction">
<summary>
Specifies an instance of the MODE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MonthFunction">
<summary>
Specifies an instance of the MONTH function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MRoundFunction">
<summary>
Specifies an instance of the MROUND function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MultinomialFunction">
<summary>
Specifies an instance of the MULTINOMIAL function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NFunction">
<summary>
Specifies an instance of the N function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NAFunction">
<summary>
Specifies an instance of the NA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NegBinomDistFunction">
<summary>
Specifies an instance of the NEGBINOMDIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NormDistFunction">
<summary>
Specifies an instance of the NORMDIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NormInvFunction">
<summary>
Specifies an instance of the NORMINV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NominalFunction">
<summary>
Specifies an instance of the NOMINAL function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NormSDistFunction">
<summary>
Specifies an instance of the NORMSDIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NormSInvFunction">
<summary>
Specifies an instance of the NORMSINV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NotFunction">
<summary>
Specifies an instance of the NOT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NowFunction">
<summary>
Specifies an instance of the NOW function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NPerFunction">
<summary>
Specifies an instance of the NPER function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NpvFunction">
<summary>
Specifies an instance of the NPV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.OddFunction">
<summary>
Specifies an instance of the ODD function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.OrFunction">
<summary>
Specifies an instance of the OR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PearsonFunction">
<summary>
Specifies an instance of the PEARSON function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PercentileFunction">
<summary>
Specifies an instance of the PERCENTILE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PercentRankFunction">
<summary>
Specifies an instance of the PERCENTRANK function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PermutFunction">
<summary>
Specifies an instance of the PERMUT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PiFunction">
<summary>
Specifies an instance of the PI function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PmtFunction">
<summary>
Specifies an instance of the PMT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PoissonFunction">
<summary>
Specifies an instance of the POISSON function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PowerFunction">
<summary>
Specifies an instance of the POWER function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PpmtFunction">
<summary>
Specifies an instance of the PPMT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PriceDiscFunction">
<summary>
Specifies an instance of the PRICEDISC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PriceMatFunction">
<summary>
Specifies an instance of the PRICEMAT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ProbFunction">
<summary>
Specifies an instance of the PROB function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ProductFunction">
<summary>
Specifies an instance of the PRODUCT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ProperFunction">
<summary>
Specifies an instance of the PROPER function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PvFunction">
<summary>
Specifies an instance of the PV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.QuartileFunction">
<summary>
Specifies an instance of the QUARTILE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.QuotientFunction">
<summary>
Specifies an instance of the QUOTIENT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RadiansFunction">
<summary>
Specifies an instance of the RADIANS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RandFunction">
<summary>
Specifies an instance of the RAND function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RandBetweenFunction">
<summary>
Specifies an instance of the RANDBETWEEN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RankFunction">
<summary>
Specifies an instance of the RANK function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RateFunction">
<summary>
Specifies an instance of the RATE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ReceivedFunction">
<summary>
Specifies an instance of the RECEIVED function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ReplaceFunction">
<summary>
Specifies an instance of the REPLACE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ReptFunction">
<summary>
Specifies an instance of the REPT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RightFunction">
<summary>
Specifies an instance of the RIGHT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RoundFunction">
<summary>
Specifies an instance of the ROUND function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RoundDownFunction">
<summary>
Specifies an instance of the ROUNDDOWN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RoundUpFunction">
<summary>
Specifies an instance of the ROUNDUP function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RowsFunction">
<summary>
Specifies an instance of the ROWS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RSqFunction">
<summary>
Specifies an instance of the RSQ function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SecondFunction">
<summary>
Specifies an instance of the SECOND function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SeriesSumFunction">
<summary>
Specifies an instance of the SERIESSUM function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SignFunction">
<summary>
Specifies an instance of the SIGN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SinFunction">
<summary>
Specifies an instance of the SIN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SinhFunction">
<summary>
Specifies an instance of the SINH function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SkewFunction">
<summary>
Specifies an instance of the SKEW function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SlnFunction">
<summary>
Specifies an instance of the SLN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SlopeFunction">
<summary>
Specifies an instance of the SLOPE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SmallFunction">
<summary>
Specifies an instance of the SMALL function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SqrtFunction">
<summary>
Specifies an instance of the SQRT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SqrtPiFunction">
<summary>
Specifies an instance of the SQRTPI function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.StandardizeFunction">
<summary>
Specifies an instance of the STANDARDIZE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.StDevFunction">
<summary>
Specifies an instance of the STDEV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.StDevPFunction">
<summary>
Specifies an instance of the STDEVP function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.StDevAFunction">
<summary>
Specifies an instance of the STDEVA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.StDevPAFunction">
<summary>
Specifies an instance of the STDEVPA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.StEyxFunction">
<summary>
Specifies an instance of the STEYX function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SubstituteFunction">
<summary>
Specifies an instance of the SUBSTITUTE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SumFunction">
<summary>
Specifies an instance of the SUM function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SumProductFunction">
<summary>
Specifies an instance of the SUMPRODUCT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SumSqFunction">
<summary>
Specifies an instance of the SUMSQ function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SumX2MY2Function">
<summary>
Specifies an instance of the SUMX2MY2 function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SumX2PY2Function">
<summary>
Specifies an instance of the SUMX2PY2 function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SumXMY2Function">
<summary>
Specifies an instance of the SUMXMY2 function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SydFunction">
<summary>
Specifies an instance of the SYD function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TanFunction">
<summary>
Specifies an instance of the TAN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TanhFunction">
<summary>
Specifies an instance of the TANH function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TBillEqFunction">
<summary>
Specifies an instance of the TBILLEQ function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TBillPriceFunction">
<summary>
Specifies an instance of the TBILLPRICE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TBillYieldFunction">
<summary>
Specifies an instance of the TBILLYIELD function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TDistFunction">
<summary>
Specifies an instance of the TDIST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TimeFunction">
<summary>
Specifies an instance of the TIME function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TimeValueFunction">
<summary>
Specifies an instance of the TIMEVALUE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TInvFunction">
<summary>
Specifies an instance of the TINV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TodayFunction">
<summary>
Specifies an instance of the TODAY function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TrimFunction">
<summary>
Specifies an instance of the TRIM function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TrimMeanFunction">
<summary>
Specifies an instance of the TRIMMEAN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TrueFunction">
<summary>
Specifies an instance of the TRUE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TruncFunction">
<summary>
Specifies an instance of the TRUNC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TTestFunction">
<summary>
Specifies an instance of the TTEST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TypeFunction">
<summary>
Specifies an instance of the TYPE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.UpperFunction">
<summary>
Specifies an instance of the UPPER function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.VarFunction">
<summary>
Specifies an instance of the VAR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.VarPFunction">
<summary>
Specifies an instance of the VARP function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.VarAFunction">
<summary>
Specifies an instance of the VARA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.VarPAFunction">
<summary>
Specifies an instance of the VARPA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.VdbFunction">
<summary>
Specifies an instance of the VDB function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.WeekdayFunction">
<summary>
Specifies an instance of the WEEKDAY function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.WeibullFunction">
<summary>
Specifies an instance of the WEIBULL function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.WeekNumFunction">
<summary>
Specifies an instance of the WEEKNUM function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.YearFunction">
<summary>
Specifies an instance of the YEAR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ZTestFunction">
<summary>
Specifies an instance of the ZTEST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CountAFunction">
<summary>
Specifies an instance of the COUNTA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CountFunction">
<summary>
Specifies an instance of the COUNT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SubtotalFunction">
<summary>
Specifies an instance of the SUBTOTAL function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AverageAFunction">
<summary>
Specifies an instance of the AVERAGEA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AddressFunction">
<summary>
Specifies an instance of the ADDRESS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.YearFracFunction">
<summary>
Specifies an instance of the YEARFRAC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CoupDayBSFunction">
<summary>
Specifies an instance of the COUPDAYBS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CoupDaysFunction">
<summary>
Specifies an instance of the COUPDAYS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CoupDaysNCFunction">
<summary>
Specifies an instance of the COUPDAYSNC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CoupNCDFunction">
<summary>
Specifies an instance of the COUPNCD function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CoupNumFunction">
<summary>
Specifies an instance of the COUPNUM function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CoupPCDFunction">
<summary>
Specifies an instance of the COUPPCD function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.PriceFunction">
<summary>
Specifies an instance of the PRICE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DurationFunction">
<summary>
Specifies an instance of the DURATION function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AmordegrcFunction">
<summary>
Specifies an instance of the AMORDEGRC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AmorlincFunction">
<summary>
Specifies an instance of the AMORLINC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DollarDeFunction">
<summary>
Specifies an instance of the DOLLARDE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DollarFrFunction">
<summary>
Specifies an instance of the DOLLARFR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.XnpvFunction">
<summary>
Specifies an instance of the XNPV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.XirrFunction">
<summary>
Specifies an instance of the XIRR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CumIpmtFunction">
<summary>
Specifies an instance of the CUMIPMT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CumPrincFunction">
<summary>
Specifies an instance of the CUMPRINC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.EuroFunction">
<summary>
Specifies an instance of the EURO function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.EuroConvertFunction">
<summary>
Specifies an instance of the EUROCONVERT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.OddFPriceFunction">
<summary>
Specifies an instance of the ODDFPRICE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.OddLPriceFunction">
<summary>
Specifies an instance of the ODDLPRICE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.OddLYieldFunction">
<summary>
Specifies an instance of the ODDLYIELD function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.OddFYieldFunction">
<summary>
Specifies an instance of the ODDFYIELD function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.YieldDiscFunction">
<summary>
Specifies an instance of the YIELDDISC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.YieldMatFunction">
<summary>
Specifies an instance of the YIELDMAT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.YieldFunction">
<summary>
Specifies an instance of the YIELD function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MDurationFunction">
<summary>
Specifies an instance of the MDURATION function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.WorkdayFunction">
<summary>
Specifies an instance of the WORKDAY function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.NetWorkdaysFunction">
<summary>
Specifies an instance of the NETWORKDAYS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TFunction">
<summary>
Specifies an instance of the T function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ConvertFunction">
<summary>
Specifies an instance of the CONVERT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Dec2OctFunction">
<summary>
Specifies an instance of the DEC2OCT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Dec2BinFunction">
<summary>
Specifies an instance of the DEC2BIN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Bin2DecFunction">
<summary>
Specifies an instance of the BIN2DEC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Bin2HexFunction">
<summary>
Specifies an instance of the BIN2HEX function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Bin2OctFunction">
<summary>
Specifies an instance of the BIN2OCT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Oct2BinFunction">
<summary>
Specifies an instance of the OCT2BIN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Oct2DecFunction">
<summary>
Specifies an instance of the OCT2DEC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Oct2HexFunction">
<summary>
Specifies an instance of the OCT2HEX function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Hex2BinFunction">
<summary>
Specifies an instance of the HEX2BIN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Hex2DecFunction">
<summary>
Specifies an instance of the HEX2DEC function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Hex2OctFunction">
<summary>
Specifies an instance of the HEX2OCT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.Dec2HexFunction">
<summary>
Specifies an instance of the DEC2HEX function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.HLookupFunction">
<summary>
Specifies an instance of the HLOOKUP function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.VLookupFunction">
<summary>
Specifies an instance of the VLOOKUP function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LookupFunction">
<summary>
Specifies an instance of the LOOKUP function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SumIfFunction">
<summary>
Specifies an instance of the SUMIF function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CountIfFunction">
<summary>
Specifies an instance of the COUNTIF function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RomanFunction">
<summary>
Specifies an instance of the ROMAN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MDetermFunction">
<summary>
Specifies an instance of the MDETERM function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MInverseFunction">
<summary>
Specifies an instance of the MINVERSE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MMultFunction">
<summary>
Specifies an instance of the MMULT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TransposeFunction">
<summary>
Specifies an instance of the TRANSPOSE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IspmtFunction">
<summary>
Specifies an instance of the ISPMT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DateDifFunction">
<summary>
Specifies an instance of the DATEDIF function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.FrequencyFunction">
<summary>
Specifies an instance of the FREQUENCY function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TrendFunction">
<summary>
Specifies an instance of the TREND function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.GrowthFunction">
<summary>
Specifies an instance of the GROWTH function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LinEstFunction">
<summary>
Specifies an instance of the LINEST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.LogEstFunction">
<summary>
Specifies an instance of the LOGEST function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ComplexFunction">
<summary>
Specifies an instance of the COMPLEX function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImAbsFunction">
<summary>
Specifies an instance of the IMABS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImaginaryFunction">
<summary>
Specifies an instance of the IMAGINARY function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImArgumentFunction">
<summary>
Specifies an instance of the IMARGUMENT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImConjugateFunction">
<summary>
Specifies an instance of the IMCONJUGATE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImCosFunction">
<summary>
Specifies an instance of the IMCOS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImDivFunction">
<summary>
Specifies an instance of the IMDIV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImExpFunction">
<summary>
Specifies an instance of the IMEXP function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImLnFunction">
<summary>
Specifies an instance of the IMLN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImLog10Function">
<summary>
Specifies an instance of the IMLOG10 function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImLog2Function">
<summary>
Specifies an instance of the IMLOG2 function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImPowerFunction">
<summary>
Specifies an instance of the IMPOWER function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImProductFunction">
<summary>
Specifies an instance of the IMPRODUCT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImRealFunction">
<summary>
Specifies an instance of the IMREAL function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImSinFunction">
<summary>
Specifies an instance of the IMSIN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImSqrtFunction">
<summary>
Specifies an instance of the IMSQRT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImSumFunction">
<summary>
Specifies an instance of the IMSUM function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ImSubFunction">
<summary>
Specifies an instance of the IMSUB function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DAverageFunction">
<summary>
Specifies an instance of the DAVERAGE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DCountFunction">
<summary>
Specifies an instance of the DCOUNT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DCountAFunction">
<summary>
Specifies an instance of the DCOUNTA function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DGetFunction">
<summary>
Specifies an instance of the DGET function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DMaxFunction">
<summary>
Specifies an instance of the DMAX function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DMinFunction">
<summary>
Specifies an instance of the DMIN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DProductFunction">
<summary>
Specifies an instance of the DPRODUCT function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DStDevFunction">
<summary>
Specifies an instance of the DSTDEV function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DStDevPFunction">
<summary>
Specifies an instance of the DSTDEVP function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DSumFunction">
<summary>
Specifies an instance of the DSUM function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DVarFunction">
<summary>
Specifies an instance of the DVar function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.DVarPFunction">
<summary>
Specifies an instance of the DVarP function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.OffsetFunction">
<summary>
Specifies an instance of the OFFSET function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ColumnFunction">
<summary>
Specifies an instance of the COLUMN function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.RowFunction">
<summary>
Specifies an instance of the ROW function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.ValueFunction">
<summary>
Specifies an instance of the VALUE function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AverageIfFunction">
<summary>
Specifies an instance of the AVERAGEIF function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.AverageIfsFunction">
<summary>
Specifies an instance of the AVERAGEIFS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.CountIfsFunction">
<summary>
Specifies an instance of the COUNTIFS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.IfErrorFunction">
<summary>
Specifies an instance of the IFERROR function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.MatchFunction">
<summary>
Specifies an instance of the MATCH function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SearchFunction">
<summary>
Specifies an instance of the SEARCH function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.SumIfsFunction">
<summary>
Specifies an instance of the SUMIFS function.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.FunctionInfo.TextFunction">
<summary>
Specifies an instance of the TEXT function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FunctionInfo.IsContextSensitive">
<summary>
Determines whether the evaluation of the function is dependent
on the context in which the evaluation occurs.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.UndefinedFunctionInfo">
<summary>
Represents an undefined function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.UndefinedFunctionInfo.#ctor(System.String)">
<summary>
Creates an undefined function.
</summary>
<param name="name">Name of the function</param>
</member>
<member name="M:FarPoint.CalcEngine.UndefinedFunctionInfo.Evaluate(System.Object[])">
<summary>
Returns the result of the function applied to the arguments.
</summary>
<param name="args">Arguments for the function evaluation</param>
<returns>Result of the function applied to the arguments</returns>
</member>
<member name="P:FarPoint.CalcEngine.UndefinedFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.UndefinedFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.UndefinedFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ArrayHelper">
<summary>
</summary>
</member>
<member name="T:FarPoint.CalcEngine.OperatorInfo">
<summary>
Represents the abstract base class for defining operators.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OperatorInfo.ToString">
<summary>
Returns the text representation of the operator.
</summary>
<returns>Text representation of the operator</returns>
</member>
<member name="P:FarPoint.CalcEngine.OperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.UnaryOperatorInfo">
<summary>
Represents the abstract base class for defining unary operators.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.UnaryOperatorInfo.Evaluate(System.Object)">
<summary>
Returns the result of the operator applied to the operand.
</summary>
<param name="arg">Operand for the operator evaluation</param>
<returns>Result of the operator applied to the operand</returns>
</member>
<member name="F:FarPoint.CalcEngine.UnaryOperatorInfo.NegateOperator">
<summary>
Represents an instance of the unary negate operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.UnaryOperatorInfo.PlusOperator">
<summary>
Represents an instance of the unary plus operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.UnaryOperatorInfo.PercentOperator">
<summary>
Represents an instance of the unary percent operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BinaryOperatorInfo">
<summary>
Represents the abstract base class for defining binary operators.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BinaryOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.AddOperator">
<summary>
Represents an instance of the binary addition operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.SubtractOperator">
<summary>
Represents an instance of the binary subtraction operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.MultiplyOperator">
<summary>
Represents an instance of the binary multiplication operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.DivideOperator">
<summary>
Represents an instance of the binary division operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.ExponentOperator">
<summary>
Represents an instance of the binary exponent operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.ConcatenateOperator">
<summary>
Represents an instance of the binary concatenate operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.EqualOperator">
<summary>
Represents an instance of the binary equals operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.NotEqualOperator">
<summary>
Represents an instance of the binary "not equals" operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.LessThanOperator">
<summary>
Represents an instance of the binary "less than" operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.GreaterThanOperator">
<summary>
Represents an instance of the binary "greater than" operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.LessThanOrEqualOperator">
<summary>
Represents an instance of the binary "less than or equals" operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.GreaterThanOrEqualOperator">
<summary>
Represents an instance of the binary "greater than or equals" operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.UnionOperator">
<summary>
Represents an instance of the binary "Union" operator.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.BinaryOperatorInfo.IntersectOperator">
<summary>
Represents an instance of the binary "Intersect" operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.UnionOperatorInfo">
<summary>
Represents the union operator.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.UnionOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IntersectOperatorInfo">
<summary>
Represents the intersect operator.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IntersectOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.EqualOperatorInfo">
<summary>
Represents the equals operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.EqualOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.EqualOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "T:FarPoint.CalcEngine.NotEqualOperatorInfo" -->
<member name="M:FarPoint.CalcEngine.NotEqualOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.NotEqualOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LessThanOperatorInfo">
<summary>
Represents the less than operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LessThanOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.LessThanOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.GreaterThanOperatorInfo">
<summary>
Represents the greater than operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GreaterThanOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.GreaterThanOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LessThanOrEqualOperatorInfo">
<summary>
Represents the less than or equal operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LessThanOrEqualOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.LessThanOrEqualOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.GreaterThanOrEqualOperatorInfo">
<summary>
Represents the greater than or equal operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GreaterThanOrEqualOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.GreaterThanOrEqualOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ConcatenateOperatorInfo">
<summary>
Represents the concatenation operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ConcatenateOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.ConcatenateOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AddOperatorInfo">
<summary>
Represents the addition operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AddOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.AddOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SubtractOperatorInfo">
<summary>
Represents the subtraction operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SubtractOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.SubtractOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MultiplyOperatorInfo">
<summary>
Represents the multiplication operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MultiplyOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.MultiplyOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DivideOperatorInfo">
<summary>
Represents the division operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DivideOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.DivideOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExponentOperatorInfo">
<summary>
Represents the exponent operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExponentOperatorInfo.Evaluate(System.Object,System.Object)">
<summary>
Returns the result of the operator applied to the operands.
</summary>
<param name="arg0">Operand on the left side of the operator</param>
<param name="arg1">Operand on the right side of the operator</param>
<returns>Result of the operator applied to the operands</returns>
</member>
<member name="P:FarPoint.CalcEngine.ExponentOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PercentOperatorInfo">
<summary>
Represents the percentage operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PercentOperatorInfo.Evaluate(System.Object)">
<summary>
Returns the result of the operator applied to the operand.
</summary>
<param name="arg">Operand for the operator evaluation</param>
<returns>Result of the operator applied to the operand</returns>
</member>
<member name="P:FarPoint.CalcEngine.PercentOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NegateOperatorInfo">
<summary>
Represents the unary negation operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NegateOperatorInfo.Evaluate(System.Object)">
<summary>
Returns the result of the operator applied to the operand.
</summary>
<param name="arg">Operand for the operator evaluation</param>
<returns>Result of the operator applied to the operand</returns>
</member>
<member name="P:FarPoint.CalcEngine.NegateOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PlusOperatorInfo">
<summary>
Represents the unary plus operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PlusOperatorInfo.Evaluate(System.Object)">
<summary>
Returns the result of the operator applied to the operand.
</summary>
<param name="arg">Operand for the operator evaluation</param>
<returns>Result of the operator applied to the operand</returns>
</member>
<member name="P:FarPoint.CalcEngine.PlusOperatorInfo.Name">
<summary>
Gets the name of the operator.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DatabaseEnumerator.CreateEvaluator(System.Object)">
<summary>
</summary>
<param name="criteria"></param>
<returns></returns>
<remarks>
In Excel, a string criteria with out a leading operator is treated as a
string begins with operation. In OpenOffice, a string criteria with out
a leading operator is treated as a string equals operation. We are
supporting the OpenOffice behavior.
In Excel and OpenOffice, a string equals criteria supports regular
expressions. We are not supporting regular expressions.
</remarks>
</member>
<member name="M:FarPoint.CalcEngine.DatabaseEnumerator.RowMeetsCriteria">
<summary>
Determines if the current row meets the specified critieria.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DatabaseEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
</member>
<member name="M:FarPoint.CalcEngine.DatabaseEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the first element in the collection.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DatabaseEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DAverageFunctionInfo">
<summary>
Returns the average of values in a column in a list that match the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DAverageFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DAverageFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DAverageFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DAverageFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DCountFunctionInfo">
<summary>
Counts the cells that contain numbers in a column in a list that match the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DCountFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DCountFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DCountFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DCountFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DCountFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DCountAFunctionInfo">
<summary>
Counts the cells that are not empty in a column in a list that match the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DCountAFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DCountAFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DCountAFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DCountAFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DCountAFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DGetFunctionInfo">
<summary>
Extracts a single value from a column in a list that matches the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DGetFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DGetFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DGetFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DGetFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DMaxFunctionInfo">
<summary>
Returns the largest number in a column in a list that matches the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DMaxFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DMaxFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DMaxFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DMaxFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DMinFunctionInfo">
<summary>
Returns the smallest number in a column in a list that matches the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DMinFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DMinFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DMinFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DMinFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DProductFunctionInfo">
<summary>
Multiplies the values in a column in a list that match the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DProductFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DProductFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DProductFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DProductFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DStDevFunctionInfo">
<summary>
Estimates the standard deviation of a population based on a sample, using the values in a column in a list that match the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DStDevFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DStDevFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DStDevFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DStDevFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DStDevPFunctionInfo">
<summary>
Calculates the standard deviation of a population based on the entire populcation, using the values in a column in a list that match the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DStDevPFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DStDevPFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DStDevPFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DStDevPFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DSumFunctionInfo">
<summary>
Adds the values in a column in a list that match the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DSumFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DSumFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DSumFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DSumFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DVarFunctionInfo">
<summary>
Estimates the variance of a population based on a sample, using the values in a column in a list that match the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DVarFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DVarFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DVarFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DVarFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DVarPFunctionInfo">
<summary>
Calculates the variance of a population based on the entire population, using the values in a column in a list that match the specified conditions.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DVarPFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DVarPFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DVarPFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DVarPFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DateFunctionInfo">
<summary>
Returns the DateTime object for a particular date, specified by the year, month, and day.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DateFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DateFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DateFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DateFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DateValueFunctionInfo">
<summary>
Returns the DateTime object of the specified date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DateValueFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DateValueFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DateValueFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DateValueFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DayFunctionInfo">
<summary>
Returns the day number of the month (integer 1 to 31) that corresponds to the specified date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DayFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DayFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DayFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DayFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Days360FunctionInfo">
<summary>
Returns the number of days between two dates based on a 360-day year.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Days360FunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Days360FunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Days360FunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Days360FunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Days360FunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.EDateFunctionInfo">
<summary>
Returns the DateTime object that is the indicated number of months before or after a specified date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.EDateFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EDateFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EDateFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EDateFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.EoMonthFunctionInfo">
<summary>
Returns the DateTime object for the last day of the month (end of month)
that is the indicated number of months before or after the start date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.EoMonthFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EoMonthFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EoMonthFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EoMonthFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.HourFunctionInfo">
<summary>
Returns the hour that corresponds to the provided time.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.HourFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HourFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HourFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HourFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MinuteFunctionInfo">
<summary>
Returns the minute corresponding to the provided time value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MinuteFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MinuteFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MinuteFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MinuteFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MonthFunctionInfo">
<summary>
Returns the month corresponding to the specified date value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MonthFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MonthFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MonthFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MonthFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NowFunctionInfo">
<summary>
Returns the DateTime object of the current date and time.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NowFunctionInfo.IsVolatile">
<summary>
Determines if the function is volatile.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NowFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NowFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NowFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NowFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SecondFunctionInfo">
<summary>
Returns the seconds (0 to 59) value for a specified time value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SecondFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SecondFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SecondFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SecondFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TimeFunctionInfo">
<summary>
Returns a TimeSpan object for the given hour, minute, and second.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TimeFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TimeFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TimeFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TimeFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TimeValueFunctionInfo">
<summary>
Returns a TimeSpan object represented by a text string.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TimeValueFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TimeValueFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TimeValueFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TimeValueFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TodayFunctionInfo">
<summary>
Returns the DateTime object of the current date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TodayFunctionInfo.IsVolatile">
<summary>
Determines if the function is volatile.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TodayFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TodayFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TodayFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TodayFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.WeekdayFunctionInfo">
<summary>
Returns the number corresponding to the day of the week for a specified date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.WeekdayFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.WeekdayFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WeekdayFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WeekdayFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WeekdayFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.WeekNumFunctionInfo">
<summary>
Returns a number that indicates the week of the year numerically.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.WeekNumFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.WeekNumFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WeekNumFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WeekNumFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WeekNumFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.YearFunctionInfo">
<summary>
Returns the year as an integer for a specified date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.YearFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YearFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YearFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YearFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NetWorkdaysFunctionInfo">
<summary>
Returns the number of whole working days between start date and end date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NetWorkdaysFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NetWorkdaysFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NetWorkdaysFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NetWorkdaysFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NetWorkdaysFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NetWorkdaysFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.WorkdayFunctionInfo">
<summary>
Returns a number that represents a date that is the indicated number of working days before or after start date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.WorkdayFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.WorkdayFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.WorkdayFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WorkdayFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WorkdayFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WorkdayFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.YearFracFunctionInfo">
<summary>
Returns the year as an integer for a specified date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.YearFracFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.YearFracFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YearFracFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YearFracFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YearFracFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DateDifFunctionInfo">
<summary>
Returns the number of days, months, or years betwwen two dates.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DateDifFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DateDifFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DateDifFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DateDifFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.EngineeringHelper">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.EngineeringHelper.LongToString(System.Int64,System.Int64,System.Int64)">
<summary>
Converts the numeric value to its equivalent string representation in a given base.
</summary>
<param name="number">Numeric value</param>
<param name="radix">Radix used in string representation</param>
<param name="places">Minimum length of string representation</param>
<returns>String representation of number</returns>
</member>
<member name="M:FarPoint.CalcEngine.EngineeringHelper.StringToLong(System.String,System.Int32,System.Int32@)">
<summary>
Converts the string representation of a number in a given base to its equivalent numeric value.
</summary>
<param name="s">String representation of number</param>
<param name="radix">Radix used in string representation</param>
<param name="pos">Position of first non-parsed character</param>
<returns>Numeric value</returns>
<remarks>The empty string is treated as zero.</remarks>
</member>
<member name="T:FarPoint.CalcEngine.BesselIFunctionInfo">
<summary>
Returns the Bessel function of the first kind evaluated for purely imaginary arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BesselIFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselIFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselIFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselIFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BesselJFunctionInfo">
<summary>
Returns the Bessel function of the first kind.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BesselJFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselJFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselJFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselJFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BesselKFunctionInfo">
<summary>
Returns the modified Bessel function of the second kind evaluated for purely imaginary arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BesselKFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselKFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselKFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselKFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BesselYFunctionInfo">
<summary>
Returns the Bessel function of the second kind.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BesselYFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselYFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselYFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BesselYFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DeltaFunctionInfo">
<summary>
Identifies whether two values are equal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DeltaFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DeltaFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DeltaFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DeltaFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DeltaFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ErfFunctionInfo">
<summary>
Returns the error function integrated between a lower and an upper limit.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ErfFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ErfFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ErfFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ErfFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ErfFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ErfcFunctionInfo">
<summary>
Returns the complementary error function integrated between a lower limit and infinity.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ErfcFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ErfcFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ErfcFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ErfcFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.GeStepFunctionInfo">
<summary>
Returns an indication of whether a number is equal to a threshold.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GeStepFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GeStepFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GeStepFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GeStepFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GeStepFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Dec2OctFunctionInfo">
<summary>
Converts a decimal number to octal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Dec2OctFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Dec2OctFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Dec2OctFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Dec2OctFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Dec2OctFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Dec2BinFunctionInfo">
<summary>
Converts a decimal number to binary.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Dec2BinFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Dec2BinFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Dec2BinFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Dec2BinFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Dec2BinFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Dec2HexFunctionInfo">
<summary>
Converts a decimal number to hexadecimal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Dec2HexFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Dec2HexFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Dec2HexFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Dec2HexFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Dec2HexFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Bin2DecFunctionInfo">
<summary>
Converts a binary number to decimal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Bin2DecFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Bin2DecFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Bin2DecFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Bin2DecFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Bin2HexFunctionInfo">
<summary>
Converts a binary number to hexadecimal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Bin2HexFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Bin2HexFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Bin2HexFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Bin2HexFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Bin2HexFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Bin2OctFunctionInfo">
<summary>
Converts a binary number to octal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Bin2OctFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Bin2OctFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Bin2OctFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Bin2OctFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Bin2OctFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Hex2BinFunctionInfo">
<summary>
Converts a hexadecimal number to binary.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Hex2BinFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Hex2BinFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Hex2BinFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Hex2BinFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Hex2BinFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Hex2DecFunctionInfo">
<summary>
Converts a hexadecimal number to decimal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Hex2DecFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Hex2DecFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Hex2DecFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Hex2DecFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Hex2OctFunctionInfo">
<summary>
Converts a hexadecimal number to octal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Hex2OctFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Hex2OctFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Hex2OctFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Hex2OctFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Hex2OctFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Oct2BinFunctionInfo">
<summary>
Converts a octal number to binary.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Oct2BinFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Oct2BinFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Oct2BinFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Oct2BinFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Oct2BinFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Oct2DecFunctionInfo">
<summary>
Converts a octal number to decimal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Oct2DecFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Oct2DecFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Oct2DecFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Oct2DecFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Oct2HexFunctionInfo">
<summary>
Converts a octal number to hexadecimal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Oct2HexFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Oct2HexFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Oct2HexFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Oct2HexFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Oct2HexFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ConvertFunctionInfo">
<summary>
Returns an indication of whether a number is equal to a threshold.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ConvertFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ConvertFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ConvertFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ConvertFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ComplexFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ComplexFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ComplexFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ComplexFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ComplexFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ComplexFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImRealFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImRealFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImRealFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImRealFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImRealFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImaginaryFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImaginaryFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImaginaryFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImaginaryFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImaginaryFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImAbsFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImAbsFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImAbsFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImAbsFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImAbsFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImArgumentFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImArgumentFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImArgumentFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImArgumentFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImArgumentFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImConjugateFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImConjugateFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImConjugateFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImConjugateFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImConjugateFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImCosFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImCosFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImCosFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImCosFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImCosFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImDivFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImDivFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImDivFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImDivFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImDivFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImExpFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImExpFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImExpFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImExpFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImExpFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImLnFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImLnFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImLnFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImLnFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImLnFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImLog10FunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImLog10FunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImLog10FunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImLog10FunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImLog10FunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImLog2FunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImLog2FunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImLog2FunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImLog2FunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImLog2FunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImPowerFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImPowerFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImPowerFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImPowerFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImPowerFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImProductFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImProductFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImProductFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImProductFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImProductFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImSinFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImSinFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSinFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSinFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSinFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImSqrtFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImSqrtFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSqrtFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSqrtFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSqrtFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImSubFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImSubFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSubFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSubFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSubFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ImSumFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ImSumFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSumFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSumFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ImSumFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Complex">
<summary>
Represents a complex number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Complex.#ctor(System.Double,System.Double)">
<summary>
Constructs are complex number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Complex.Parse(System.String)">
<summary>
Returns the complex number represented by the specifid string.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Complex.ToString">
<summary>
Returns the string representation of this complex number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Complex.ToString(System.String)">
<summary>
Returns the string representation of this complex number.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Complex.Real">
<summary>
Gets the real part of the complex number.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Complex.Imag">
<summary>
Gets the imaginary part of the complex number.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ComplexConvert">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ComplexConvert.ToComplex(System.Object)">
<summary>
Converts the specified value to a complex number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ComplexConvert.ToResult(FarPoint.CalcEngine.Complex)">
<summary>
Converts a double to an object.
</summary>
<param name="value">Value to convert</param>
<returns>Object value equivalent to the specified value</returns>
</member>
<member name="M:FarPoint.CalcEngine.ComplexConvert.ToResult(FarPoint.CalcEngine.Complex,System.String)">
<summary>
Converts a double to an object.
</summary>
<param name="value">Value to convert</param>
<param name="suffix">String suffix</param>
<returns>Object value equivalent to the specified value</returns>
</member>
<member name="T:FarPoint.CalcEngine.GoalSeekData">
<summary>
</summary>
</member>
<member name="T:FarPoint.CalcEngine.EuroFunctionInfo">
<summary>
Returns one euro as a given national currency.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.EuroFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EuroFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EuroFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EuroFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.EuroConvertFunctionInfo">
<summary>
Converts a currency value from one source to another.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.EuroConvertFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.EuroConvertFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EuroConvertFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EuroConvertFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EuroConvertFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.OddLYieldFunctionInfo">
<summary>
Returns the yield of a security that has an odd (short or long) last period.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OddLYieldFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OddLYieldFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddLYieldFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddLYieldFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddLYieldFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.OddFYieldFunctionInfo">
<summary>
Returns the yield of a security that has an odd (short or long) first period.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OddFYieldFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OddFYieldFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddFYieldFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddFYieldFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddFYieldFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.OddLPriceFunctionInfo">
<summary>
Returns the price per $100 face value of a security having an odd (short or long) last coupon period.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OddLPriceFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OddLPriceFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddLPriceFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddLPriceFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddLPriceFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.OddFPriceFunctionInfo">
<summary>
Returns the price per $100 face value of a security having an odd (short or long) first period.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OddFPriceFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OddFPriceFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddFPriceFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddFPriceFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddFPriceFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CumIpmtFunctionInfo">
<summary>
Returns the cumulative interest paid on a loan between start_period and end_period.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CumIpmtFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CumIpmtFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CumIpmtFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CumIpmtFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CumPrincFunctionInfo">
<summary>
Returns the cumulative principal paid on a loan between start_period and end_period.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CumPrincFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CumPrincFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CumPrincFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CumPrincFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.XirrFunctionInfo">
<summary>
Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.XirrFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.XirrFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.XirrFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.XirrFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.XirrFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.XirrFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.YieldFunctionInfo">
<summary>
Returns the yield on a security that pays periodic interest.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.YieldFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.YieldFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YieldFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YieldFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YieldFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.YieldDiscFunctionInfo">
<summary>
Returns the annual yield for a discounted security.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.YieldDiscFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.YieldDiscFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YieldDiscFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YieldDiscFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YieldDiscFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.YieldMatFunctionInfo">
<summary>
Returns the annual yield of a security that pays interest at maturity.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.YieldMatFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.YieldMatFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YieldMatFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YieldMatFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.YieldMatFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.XnpvFunctionInfo">
<summary>
Returns the net present value for a schedule of cash flows that is not necessarily periodic.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.XnpvFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.XnpvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.XnpvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.XnpvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.XnpvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DollarDeFunctionInfo">
<summary>
Converts a dollar price expressed as a fraction into a dollar price expressed as a decimal number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DollarDeFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DollarDeFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DollarDeFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DollarDeFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DollarFrFunctionInfo">
<summary>
Converts a dollar price expressed as a fraction into a dollar price expressed as a decimal number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DollarFrFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DollarFrFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DollarFrFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DollarFrFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PriceFunctionInfo">
<summary>
Returns the price per $100 face value of a security that pays periodic interest.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PriceFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PriceFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PriceFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PriceFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PriceFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MDurationFunctionInfo">
<summary>
Returns the modified duration for a security with an assumed par value of $100.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MDurationFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MDurationFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MDurationFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MDurationFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MDurationFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DurationFunctionInfo">
<summary>
Returns the Macauley duration for an assumed par value of $100.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DurationFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DurationFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DurationFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DurationFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DurationFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CoupDayBSFunctionInfo">
<summary>
Returns the number of days from the beginning of the coupon period to the settlement date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupDayBSFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupDayBSFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupDayBSFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupDayBSFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupDayBSFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CoupDaysFunctionInfo">
<summary>
Returns the number of days in the coupon period that contains the settlement date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupDaysFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupDaysFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupDaysFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupDaysFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupDaysFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CoupDaysNCFunctionInfo">
<summary>
Returns the number of days from the settlement date to the next coupon date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupDaysNCFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupDaysNCFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupDaysNCFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupDaysNCFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupDaysNCFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CoupNCDFunctionInfo">
<summary>
Returns a number that represents the next coupon date after the settlement date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupNCDFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupNCDFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupNCDFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupNCDFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupNCDFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CoupNumFunctionInfo">
<summary>
Returns the number of coupons payable between the settlement date and maturity date, rounded up to the nearest whole coupon.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupNumFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupNumFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupNumFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupNumFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupNumFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CoupPcdFunctionInfo">
<summary>
Returns a number that represents the previous coupon date before the settlement date.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupPcdFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoupPcdFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupPcdFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupPcdFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoupPcdFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AmordegrcFunctionInfo">
<summary>
Returns the depreciation for each accounting period.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AmordegrcFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AmordegrcFunctionInfo.get_amordegrc(System.Double,System.DateTime,System.DateTime,System.Double,System.Int32,System.Double,System.Int32)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AmordegrcFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function.
</summary>
<param name="args">Arguments</param>
</member>
<member name="P:FarPoint.CalcEngine.AmordegrcFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AmordegrcFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AmordegrcFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AmorlincFunctionInfo">
<summary>
Returns the depreciation for each accounting period.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AmorlincFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AmorlincFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AmorlincFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AmorlincFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AmorlincFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AccrIntFunctionInfo">
<summary>
Returns the accrued interest for a security that pays periodic interest.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AccrIntFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AccrIntFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AccrIntFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AccrIntFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AccrIntFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AccrIntMFunctionInfo">
<summary>
Returns the accrued interest for a security that pays interest at maturity.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AccrIntMFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AccrIntMFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AccrIntMFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AccrIntMFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AccrIntMFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DbFunctionInfo">
<summary>
Returns the depreciation of an asset for a specified period using the fixed-declining balance method.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DbFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DbFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DbFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DbFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DbFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DdbFunctionInfo">
<summary>
Returns the depreciation of an asset for a specified period using the double-declining balance method or another method you specify.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DdbFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DdbFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DdbFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DdbFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DdbFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DiscFunctionInfo">
<summary>
Returns the discount rate for a security.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DiscFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DiscFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DiscFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DiscFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DiscFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.EffectFunctionInfo">
<summary>
Returns the effective annual interest rate for a given nominal annual interest rate
and the number of compounding periods per year.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.EffectFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EffectFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EffectFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EffectFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FvFunctionInfo">
<summary>
Returns the future value of an investment based on a present value, periodic payments,
and a specified interest rate.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FvFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FvScheduleFunctionInfo">
<summary>
Returns the future value of an initial principal after applying a series of compound interest rates.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FvScheduleFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FvScheduleFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FvScheduleFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FvScheduleFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IntRateFunctionInfo">
<summary>
Returns the interest rate for a fully invested security.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IntRateFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IntRateFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IntRateFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IntRateFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IntRateFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IpmtFunctionInfo">
<summary>
Returns the calculation of payment of interest on a loan.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IpmtFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IpmtFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IpmtFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IpmtFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IpmtFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IrrFunctionInfo">
<summary>
Returns the internal rate of return for a series of cash flows represented by the numbers in values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IrrFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IrrFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IrrFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IrrFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IrrFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IrrFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MIrrFunctionInfo">
<summary>
Returns the modified internal rate of return for a series of periodic cash flows.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MIrrFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MIrrFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MIrrFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MIrrFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MIrrFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NominalFunctionInfo">
<summary>
Returns the nominal annual interest rate for a given effective rate and number of compounding periods per year.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NominalFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NominalFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NominalFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NominalFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NPerFunctionInfo">
<summary>
Returns the number of periods for an investment based on a present value,
future value, periodic payments, and a specified interest rate.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NPerFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NPerFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NPerFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NPerFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NPerFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NpvFunctionInfo">
<summary>
Calculates the net present value of an investment by using a discount rate and a series of future payments and income.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NpvFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NpvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NpvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NpvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NpvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PmtFunctionInfo">
<summary>
Returns the payment amount for a loan given the present value, specified interest rate, and number of terms.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PmtFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PmtFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PmtFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PmtFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PmtFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PpmtFunctionInfo">
<summary>
Returns the amount of payment of principal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PpmtFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PpmtFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PpmtFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PpmtFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PpmtFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PriceDiscFunctionInfo">
<summary>
Returns the price per $100 face value of a discounted security.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PriceDiscFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PriceDiscFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PriceDiscFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PriceDiscFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PriceDiscFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PriceMatFunctionInfo">
<summary>
Returns the price at maturity per $100 face value of a security that pays interest.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PriceMatFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PriceMatFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PriceMatFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PriceMatFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PriceMatFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PvFunctionInfo">
<summary>
Returns the present value of an investment based on the interest rate, number and
amount of periodic payments, and future value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PvFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
<param name="i">Index of the argument</param>
<returns>
True if the function accepts CalcReference values for the specified argument; false otherwise
</returns>
</member>
<member name="M:FarPoint.CalcEngine.PvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
<param name="args">Arguments for the function evaluation</param>
<returns>
Result of the function applied to the arguments
</returns>
</member>
<member name="P:FarPoint.CalcEngine.PvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RateFunctionInfo">
<summary>
Returns the interest rate per period of an annuity.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RateFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RateFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RateFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RateFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RateFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ReceivedFunctionInfo">
<summary>
Returns the amount received at maturity for a fully invested security.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ReceivedFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ReceivedFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReceivedFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReceivedFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReceivedFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SlnFunctionInfo">
<summary>
Returns the straight-line depreciation of an asset for one period.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SlnFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SlnFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SlnFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SlnFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SydFunctionInfo">
<summary>
Returns the sum-of-years' digits depreciation of an asset for a specified period.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SydFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SydFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SydFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SydFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TBillEqFunctionInfo">
<summary>
Returns the equivalent yield for a Treasury bill (or T-bill).
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TBillEqFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TBillEqFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TBillEqFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TBillEqFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TBillPriceFunctionInfo">
<summary>
Returns the price per $100 face value for a Treasury bill (or T-bill).
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TBillPriceFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TBillPriceFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TBillPriceFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TBillPriceFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TBillYieldFunctionInfo">
<summary>
Returns the yield for a Treasury bill (or T-bill).
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TBillYieldFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TBillYieldFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TBillYieldFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TBillYieldFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.VdbFunctionInfo">
<summary>
Returns the depreciation of an asset for any period you specify using the variable declining balance method.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.VdbFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.VdbFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VdbFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VdbFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VdbFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IspmtFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IspmtFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IspmtFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IspmtFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IspmtFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CountBlankFunctionInfo">
<summary>
Returns the number of empty (or blank) cells in a range of cells on a sheet.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountBlankFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountBlankFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountBlankFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountBlankFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ErrorTypeFunctionInfo">
<summary>
Returns a number corresponding to one of the error values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ErrorTypeFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ErrorTypeFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ErrorTypeFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ErrorTypeFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ErrorTypeFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IsBlankFunctionInfo">
<summary>
Tests whether a value, expression, or referenced cell is empty.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsBlankFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsBlankFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsBlankFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsBlankFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsBlankFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IsErrFunctionInfo">
<summary>
Tests whether a value, expression, or referenced cell has an error other than not available (#N/A).
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsErrFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsErrFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsErrFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsErrFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsErrFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IsErrorFunctionInfo">
<summary>
Tests whether a value, expression, or referenced cell has an error of any kind.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsErrorFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsErrorFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsErrorFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsErrorFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsErrorFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IsEvenFunctionInfo">
<summary>
Tests whether a value, expression, or referenced cell is even.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsEvenFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsEvenFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsEvenFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsEvenFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IsLogicalFunctionInfo">
<summary>
Tests whether a value, expression, or referenced cell is a logical value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsLogicalFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsLogicalFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsLogicalFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsLogicalFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsLogicalFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IsNAFunctionInfo">
<summary>
Tests whether a value, expression, or referenced cell has the not available (#N/A) error value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsNAFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsNAFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsNAFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsNAFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsNAFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IsNonTextFunctionInfo">
<summary>
Tests whether a value, expression, or referenced cell has non-text data.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsNonTextFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsNonTextFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsNonTextFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsNonTextFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsNonTextFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IsNumberFunctionInfo">
<summary>
Tests whether a value, expression, or referenced cell has numeric data.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsNumberFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsNumberFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsNumberFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsNumberFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsNumberFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IsOddFunctionInfo">
<summary>
Tests whether a value, expression, or referenced cell is odd.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsOddFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsOddFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsOddFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsOddFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IsRefFunctionInfo">
<summary>
Tests whether a value is a cell reference.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsRefFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsRefFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsRefFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsRefFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsRefFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsRefFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IsTextFunctionInfo">
<summary>
Tests whether a value, expression, or referenced cell has text data.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsTextFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IsTextFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsTextFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsTextFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IsTextFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NFunctionInfo">
<summary>
Returns a value converted to a number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NAFunctionInfo">
<summary>
Returns the error value #N/A that means 'not available'.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NAFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NAFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NAFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NAFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TypeFunctionInfo">
<summary>
Returns the type of value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TypeFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TypeFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TypeFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TypeFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TypeFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AndFunctionInfo">
<summary>
Returns true if all its arguments are true; otherwise, returns false if one or more arguments are false.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AndFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AndFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AndFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AndFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FalseFunctionInfo">
<summary>
Returns the value for logical false.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FalseFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FalseFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FalseFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FalseFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IfFunctionInfo">
<summary>
Returns one of two provided values based on a logical value after performing a comparison.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IfFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IfFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IfFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IfFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IfFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IfFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NotFunctionInfo">
<summary>
Reverses the logical value of its argument.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NotFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NotFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NotFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NotFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.OrFunctionInfo">
<summary>
Returns true if any argument is true; returns false if all arguments are false.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OrFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OrFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OrFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OrFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TrueFunctionInfo">
<summary>
Returns the value for logical true.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TrueFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrueFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrueFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrueFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IfErrorFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IfErrorFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Determines whether the function accepts CalcReference values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>
True if the function accepts CalcReference values for the specified argument; false otherwise
</returns>
</member>
<member name="M:FarPoint.CalcEngine.IfErrorFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IfErrorFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IfErrorFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IfErrorFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ChooseFunctionInfo">
<summary>
Returns a value from a list of values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ChooseFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ChooseFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChooseFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChooseFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChooseFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ColumnFunctionInfo">
<summary>
Returns the column number of a reference.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ColumnFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Determines whether the function accepts CalcReference values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>True if the function accepts CalcReference values for the specified argument; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.ColumnFunctionInfo.IgnoresValues(System.Int32)">
<summary>
Determines whether the function uses or ignores the values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>True if the function ignores values ; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.ColumnFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ColumnFunctionInfo.Evaluate(System.Object[],System.Object)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ColumnFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ColumnFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ColumnFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ColumnFunctionInfo.IsContextSensitive">
<summary>
Determines whether the function accepts a context.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ColumnsFunctionInfo">
<summary>
Returns the number of columns in an array or reference.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ColumnsFunctionInfo.IgnoresValues(System.Int32)">
<summary>
Determines whether the function uses or ignores the values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>True if the function ignores values ; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.ColumnsFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ColumnsFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ColumnsFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ColumnsFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RowFunctionInfo">
<summary>
Returns the row number of a reference.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RowFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Determines whether the function accepts CalcReference values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>True if the function accepts CalcReference values for the specified argument; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.RowFunctionInfo.IgnoresValues(System.Int32)">
<summary>
Determines whether the function uses or ignores the values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>True if the function ignores values ; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.RowFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RowFunctionInfo.Evaluate(System.Object[],System.Object)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RowFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RowFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RowFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RowFunctionInfo.IsContextSensitive">
<summary>
Determines whether the function accepts a context.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RowsFunctionInfo">
<summary>
Returns the number of rows in an array or reference.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RowsFunctionInfo.IgnoresValues(System.Int32)">
<summary>
Determines whether the function uses or ignores the values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>True if the function ignores values ; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.RowsFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RowsFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RowsFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RowsFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IndexFunctionInfo">
<summary>
Returns a value or the reference to a value from within an array or range.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IndexFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IndexFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IndexFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IndexFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IndexFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.VLookupFunctionInfo">
<summary>
Returns a value or the reference to a value from within an array or range.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.VLookupFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.VLookupFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.VLookupFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VLookupFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VLookupFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VLookupFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.HLookupFunctionInfo">
Returns a value or the reference to a value from within an array or range.
</member>
<member name="M:FarPoint.CalcEngine.HLookupFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.HLookupFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.HLookupFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HLookupFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HLookupFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HLookupFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LookupFunctionInfo">
Returns a value or the reference to a value from within an array or range.
</member>
<member name="M:FarPoint.CalcEngine.LookupFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LookupFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LookupFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LookupFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LookupFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AddressFunctionInfo">
<summary>
Creates a cell address as text, given specified row and column numbers.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AddressFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AddressFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AddressFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AddressFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AddressFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TransposeFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TransposeFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TransposeFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TransposeFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TransposeFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TransposeFunctionInfo.ConcreteArray">
<summary>
</summary>
</member>
<member name="T:FarPoint.CalcEngine.OffsetFunctionInfo">
<summary>
Returns a reference to a range that is the specified number of rows and columns from a the specified cell or range.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OffsetFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OffsetFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OffsetFunctionInfo.IsVolatile">
<summary>
Determines if the function is volatile.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OffsetFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OffsetFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OffsetFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OffsetFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MatchFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Determines whether the function accepts CalcMissingArgument values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>
True if the function accepts CalcReference values for the specified argument; false otherwise
</returns>
</member>
<member name="M:FarPoint.CalcEngine.MatchFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Determines whether the function accepts CalcReference values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>
True if the function accepts CalcReference values for the specified argument; false otherwise
</returns>
</member>
<member name="M:FarPoint.CalcEngine.MatchFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MatchFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MatchFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MatchFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MathHelper">
<summary>
Internal use only.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MathHelper.ApproxEqual(System.Double,System.Double)">
<summary>
Tests the equalness of two numbers with an accuracy of the magnitude
of the given values scaled by 2^-48 (4 bits stripped). This is used
by the rounding and truncating methods to iron out small roundoff
errors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MathHelper.ApproxFloor(System.Double)">
<summary>
A floor method taking ApproxEqual into account.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MathHelper.ApproxCeiling(System.Double)">
<summary>
A ceiling method taking ApproxEqual into account.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.MathHelper.pow10">
<summary>
Provides quick lookup for some common powers of 10.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MathHelper.Pow10(System.Int32)">
<summary>
Returns 10 raised to the specified power.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AbsFunctionInfo">
<summary>
Returns the absolute value of the specified value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AbsFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AbsFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AbsFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AbsFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AcosFunctionInfo">
<summary>
Returns the angle whose cosine is the specified value. The angle is in radians between 0 (zero) and pi.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AcosFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AcosFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AcosFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AcosFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AcoshFunctionInfo">
<summary>
Returns the inverse hyperbolic cosine of the specified value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AcoshFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AcoshFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AcoshFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AcoshFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AsinFunctionInfo">
<summary>
Returns the angle whose sine is the specified value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AsinFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AsinFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AsinFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AsinFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AsinhFunctionInfo">
<summary>
Returns the inverse hyperbolic sine of a number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AsinhFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AsinhFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AsinhFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AsinhFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AtanFunctionInfo">
<summary>
Returns the angle whose tangent is the specified value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AtanFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AtanFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AtanFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AtanFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Atan2FunctionInfo">
<summary>
Returns the arctangent of the specified x- and y-coordinates.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Atan2FunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Atan2FunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Atan2FunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Atan2FunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AtanhFunctionInfo">
<summary>
Returns the inverse hyperbolic tangent of a number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AtanhFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AtanhFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AtanhFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AtanhFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CeilingFunctionInfo">
<summary>
Rounds a number up to the nearest multiple of a specified value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CeilingFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CeilingFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CeilingFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CeilingFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CombinFunctionInfo">
<summary>
Returns the number of possible combinations for a specified number of items.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CombinFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CombinFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CombinFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CombinFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CosFunctionInfo">
<summary>
Returns the cosine of the specified angle.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CosFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CosFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CosFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CosFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CoshFunctionInfo">
<summary>
Returns the hyperbolic cosine of the specified value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CoshFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoshFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoshFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CoshFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DegreesFunctionInfo">
<summary>
Converts the specified value from radians to degrees.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DegreesFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DegreesFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DegreesFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DegreesFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.EvenFunctionInfo">
<summary>
Rounds the specified value up to the nearest even integer.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.EvenFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EvenFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EvenFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.EvenFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExpFunctionInfo">
<summary>
Returns e raised to the power of the specified value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExpFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExpFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExpFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExpFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FactFunctionInfo">
<summary>
Returns the factorial of the specified number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FactFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FactFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FactFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FactFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FactDoubleFunctionInfo">
<summary>
Returns the double factorial of a number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FactDoubleFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FactDoubleFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FactDoubleFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FactDoubleFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FloorFunctionInfo">
<summary>
Rounds a number down to the nearest multiple of a specified value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FloorFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FloorFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FloorFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FloorFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.GcdFunctionInfo">
<summary>
Returns the greatest common divisor of two numbers.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GcdFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GcdFunctionInfo.Gcd(System.Int32,System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GcdFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GcdFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GcdFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GcdFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.IntFunctionInfo">
<summary>
Rounds a specified number down to the nearest integer.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.IntFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IntFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IntFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.IntFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LcmFunctionInfo">
<summary>
Returns the least common multiple of integers.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LcmFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LcmFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LcmFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LcmFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LcmFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LnFunctionInfo">
<summary>
Returns the natural logarithm of the specified number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LnFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LnFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LnFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LnFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LogFunctionInfo">
<summary>
Returns the logarithm base Y of a number X.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LogFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LogFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Log10FunctionInfo">
<summary>
Returns the logarithm base 10 of a number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.Log10FunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Log10FunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Log10FunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.Log10FunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ModFunctionInfo">
<summary>
Returns the remainder after the Number argument (dividend) is divided by the Divisor argument.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ModFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ModFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ModFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ModFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MRoundFunctionInfo">
<summary>
Returns a number rounded to the desired multiple.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MRoundFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MRoundFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MRoundFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MRoundFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MultinomialFunctionInfo">
<summary>
Calculates the ratio of the factorial of a sum of values to the product of factorials.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MultinomialFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MultinomialFunctionInfo.Fact(System.Int32)">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MultinomialFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MultinomialFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MultinomialFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MultinomialFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.OddFunctionInfo">
<summary>
Rounds the specified value up to the nearest odd integer.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.OddFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.OddFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PiFunctionInfo">
<summary>
Provides pi as 3.1415926536.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PiFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PiFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PiFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PiFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PowerFunctionInfo">
<summary>
Raises the specified number to the given power.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PowerFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PowerFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PowerFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PowerFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ProductFunctionInfo">
<summary>
Multiplies all the arguments and returns the product.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ProductFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ProductFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ProductFunctionInfo.Evaluate(System.Object[],System.Boolean)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ProductFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ProductFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ProductFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.QuotientFunctionInfo">
<summary>
Returns the integer portion of a division.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.QuotientFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.QuotientFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.QuotientFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.QuotientFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RadiansFunctionInfo">
<summary>
Converts the specified number from degrees to radians.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RadiansFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RadiansFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RadiansFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RadiansFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RandFunctionInfo">
<summary>
Returns an evenly distributed random number greater than or equal to 0 and less than 1.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RandFunctionInfo.IsVolatile">
<summary>
Determines if the function is volatile.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RandFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RandFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RandFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RandFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RandBetweenFunctionInfo">
<summary>
Represents the RANDBETWEEN function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RandBetweenFunctionInfo.IsVolatile">
<summary>
Determines if the function is volatile.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RandBetweenFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RandBetweenFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RandBetweenFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RandBetweenFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RoundFunctionInfo">
<summary>
Rounds the specified value to the nearest number, using the specified number of decimal places.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RoundFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RoundFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RoundFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RoundFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RoundDownFunctionInfo">
<summary>
Rounds the specified number down to the nearest number, using the specified number of decimal places.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RoundDownFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RoundDownFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RoundDownFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RoundDownFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RoundUpFunctionInfo">
<summary>
Rounds the specified number up to the nearest number, using the specified number of decimal places.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RoundUpFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RoundUpFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RoundUpFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RoundUpFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SeriesSumFunctionInfo">
<summary>
Returns the sum of a power series.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SeriesSumFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SeriesSumFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SeriesSumFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SeriesSumFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SignFunctionInfo">
<summary>
Returns the sign of a number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SignFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SignFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SignFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SignFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SinFunctionInfo">
<summary>
Returns the sine of the specified angle.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SinFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SinFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SinFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SinFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SinhFunctionInfo">
<summary>
Returns the hyperbolic sine of the specified number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SinhFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SinhFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SinhFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SinhFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SqrtFunctionInfo">
<summary>
Returns the positive square root of the specified number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SqrtFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SqrtFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SqrtFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SqrtFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SqrtPiFunctionInfo">
<summary>
Represents the SQRTPI function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SqrtPiFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SqrtPiFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SqrtPiFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SqrtPiFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SumFunctionInfo">
<summary>
Sums values, cells, or blocks.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumFunctionInfo.Evaluate(System.Object[],System.Boolean)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SumProductFunctionInfo">
<summary>
Multiplies corresponding components in the given arrays, and returns the sum of those products.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumProductFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumProductFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumProductFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumProductFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumProductFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SumSqFunctionInfo">
<summary>
Returns the sum of the squares of the arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumSqFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumSqFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumSqFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumSqFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumSqFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SumX2MY2FunctionInfo">
<summary>
Returns the sum of the difference of the squares of two arrays.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumX2MY2FunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumX2MY2FunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumX2MY2FunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumX2MY2FunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SumX2PY2FunctionInfo">
<summary>
Returns the sum of the sum of squares of corresponding values in two arrays.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumX2PY2FunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumX2PY2FunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumX2PY2FunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumX2PY2FunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SumXMY2FunctionInfo">
<summary>
Returns the sum of the difference of squares of corresponding values in two arrays.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumXMY2FunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumXMY2FunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumXMY2FunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumXMY2FunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TanFunctionInfo">
<summary>
Returns the tangent of the specified angle.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TanFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TanFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TanFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TanFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TanhFunctionInfo">
<summary>
Returns the hyperbolic tangent of the specified number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TanhFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TanhFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TanhFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TanhFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TruncFunctionInfo">
<summary>
Removes the specified fractional part of the specified number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TruncFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TruncFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TruncFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TruncFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TruncFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SubtotalFunctionInfo">
<summary>
Returns a subtotal.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SubtotalFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SubtotalFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SubtotalFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SubtotalFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SubtotalFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SumIfFunctionInfo">
<summary>
Sums values based on criteria.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumIfFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumIfFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumIfFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumIfFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumIfFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumIfFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CountIfFunctionInfo">
<summary>
Counts values based on criteria.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountIfFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountIfFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountIfFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountIfFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountIfFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RomanFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RomanFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RomanFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RomanFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RomanFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RomanFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RomanFunctionInfo.RomanInfo">
<summary>
Represents the digit.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MMultFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MMultFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MMultFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MMultFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MMultFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MMultFunctionInfo.ConcreteArray">
<summary>
A concrete implementation of the CalcArray class.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MDetermFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MDetermFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MDetermFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MDetermFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MDetermFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MInverseFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MInverseFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MInverseFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MInverseFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MInverseFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MInverseFunctionInfo.ConcreteArray">
<summary>
A concrete implementation of the CalcArray class.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountIfsFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountIfsFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountIfsFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountIfsFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountIfsFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumIfsFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SumIfsFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumIfsFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumIfsFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SumIfsFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AveDevFunctionInfo">
<summary>
Returns the average of the absolute deviations of the specified values from their mean.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AveDevFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AveDevFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AveDevFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AveDevFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AveDevFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AverageFunctionInfo">
<summary>
Returns the average of the specified values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AverageFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AverageFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AverageFunctionInfo.Evaluate(System.Object[],System.Boolean)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.AverageAFunctionInfo">
<summary>
Returns the average of the specified values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AverageAFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AverageAFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageAFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageAFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageAFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BetaDistFunctionInfo">
<summary>
Returns the cumulative beta distribution function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BetaDistFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BetaDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BetaDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BetaDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BetaDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BetaInvFunctionInfo">
<summary>
Returns the inverse of the cumulative beta distribution function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BetaInvFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BetaInvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BetaInvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BetaInvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BetaInvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BinomDistFunctionInfo">
<summary>
Returns the individual term binomial distribution probability.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BinomDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BinomDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BinomDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BinomDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ChiDistFunctionInfo">
<summary>
Returns the one-tailed probability of the chi-squared distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ChiDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChiDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChiDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChiDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ChiInvFunctionInfo">
<summary>
Returns the inverse of the one-tailed probability of the chi-squared distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ChiInvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChiInvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChiInvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChiInvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ChiTestFunctionInfo">
<summary>
Returns the test for independence from the chi-squared distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ChiTestFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChiTestFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChiTestFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ChiTestFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ConfidenceFunctionInfo">
<summary>
Returns the confidence interval for a population mean.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ConfidenceFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ConfidenceFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ConfidenceFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ConfidenceFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CorrelFunctionInfo">
<summary>
Returns the correlation coefficient of the two sets of data.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CorrelFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CorrelFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CorrelFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CorrelFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CovarFunctionInfo">
<summary>
Returns the average of the products of deviations for each data point pair in two sets of numbers.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CovarFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CovarFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CovarFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CovarFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CovarFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CritBinomFunctionInfo">
<summary>
Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CritBinomFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CritBinomFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CritBinomFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CritBinomFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DevSqFunctionInfo">
<summary>
Returns the sum of squares of deviations of data points from their sample mean.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DevSqFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DevSqFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DevSqFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DevSqFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DevSqFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExponDistFunctionInfo">
<summary>
Returns the exponential distribution or the probability density.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExponDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExponDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExponDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExponDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FDistFunctionInfo">
<summary>
Returns the F probability distribution, to see degrees of diversity between two sets of data.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FInvFunctionInfo">
<summary>
Returns the inverse of the F probability distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FInvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FInvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FInvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FInvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FisherFunctionInfo">
<summary>
Returns the Fisher transformation for a specified value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FisherFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FisherFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FisherFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FisherFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FisherInvFunctionInfo">
<summary>
Returns the inverse of the Fisher transformation.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FisherInvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FisherInvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FisherInvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FisherInvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ForecastFunctionInfo">
<summary>
Calculates a future value using existing values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ForecastFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ForecastFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ForecastFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ForecastFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ForecastFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FTestFunctionInfo">
<summary>
Represents the FTEST function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FTestFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FTestFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FTestFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FTestFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FTestFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.GammaDistFunctionInfo">
<summary>
Returns the gamma distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GammaDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GammaDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GammaDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GammaDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.GammaInvFunctionInfo">
<summary>
Returns the inverse of the gamma cumulative distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GammaInvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GammaInvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GammaInvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GammaInvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.GammaLnFunctionInfo">
<summary>
Returns the natural logarithm of the Gamma function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GammaLnFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GammaLnFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GammaLnFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GammaLnFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.GeoMeanFunctionInfo">
<summary>
Returns the geometric mean of a set of positive data.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GeoMeanFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GeoMeanFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GeoMeanFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GeoMeanFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GeoMeanFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.HarMeanFunctionInfo">
<summary>
Returns the harmonic mean of a data set.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.HarMeanFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.HarMeanFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HarMeanFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HarMeanFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HarMeanFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.HypGeomDistFunctionInfo">
<summary>
Returns the hypergeometric distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.HypGeomDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HypGeomDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HypGeomDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.HypGeomDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.InterceptFunctionInfo">
<summary>
Calculates the point at which a line intersects the y-axis by using existing x-values and y-values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.InterceptFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.InterceptFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.InterceptFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.InterceptFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.InterceptFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.KurtFunctionInfo">
<summary>
Returns the kurtosis of a data set.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.KurtFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.KurtFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.KurtFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.KurtFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.KurtFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LargeFunctionInfo">
<summary>
Returns the nth largest value in a data set.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LargeFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LargeFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LargeFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LargeFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LogInvFunctionInfo">
<summary>
Returns the inverse of the lognormal cumulative distribution function of x.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LogInvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogInvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogInvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogInvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LogNormDistFunctionInfo">
<summary>
Returns the cumulative natural log normal distribution of x.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LogNormDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogNormDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogNormDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogNormDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MaxFunctionInfo">
<summary>
Returns the maximum value of all arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MaxFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MaxFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MaxFunctionInfo.Evaluate(System.Object[],System.Boolean)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MaxFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MaxFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MaxFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MaxAFunctionInfo">
<summary>
Returns the maximum value of all arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MaxAFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MaxAFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MaxAFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MaxAFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MaxAFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MedianFunctionInfo">
<summary>
Returns the number in the middle of the provided set of numbers.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MedianFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MedianFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MedianFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MedianFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MedianFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MinFunctionInfo">
<summary>
Returns the minimum value of all arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MinFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MinFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MinFunctionInfo.Evaluate(System.Object[],System.Boolean)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MinFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MinFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MinFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MinAFunctionInfo">
<summary>
Returns the minimum value of all arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MinAFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MinAFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MinAFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MinAFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MinAFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ModeFunctionInfo">
<summary>
Returns the most frequently occurring value in a set of data.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ModeFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ModeFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ModeFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ModeFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ModeFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NegBinomDistFunctionInfo">
<summary>
Returns the negative binomial distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NegBinomDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NegBinomDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NegBinomDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NegBinomDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NormDistFunctionInfo">
<summary>
Returns the normal cumulative distribution for the specified mean and standard deviation.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NormDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NormInvFunctionInfo">
<summary>
Returns the inverse of the normal cumulative distribution for the given mean and standard deviation.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NormInvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormInvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormInvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormInvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NormSDistFunctionInfo">
<summary>
Returns the standard normal cumulative distribution function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NormSDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormSDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormSDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormSDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NormSInvFunctionInfo">
<summary>
Returns the inverse of the standard normal cumulative distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NormSInvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormSInvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormSInvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.NormSInvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PearsonFunctionInfo">
<summary>
Returns the Pearson product moment correlation coefficient.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PearsonFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PearsonFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PearsonFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PearsonFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PearsonFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PercentileFunctionInfo">
<summary>
Returns the nth percentile of values in a range.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PercentileFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PercentileFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PercentileFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PercentileFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PercentileFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PercentRankFunctionInfo">
<summary>
Returns the rank of a value in a data set as a percentage of the data set.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PercentRankFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PercentRankFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PercentRankFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PercentRankFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PercentRankFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PercentRankFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PermutFunctionInfo">
<summary>
Returns the number of possible permutations for a specified number of items.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PermutFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PermutFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PermutFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PermutFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.PoissonFunctionInfo">
<summary>
Returns the Poisson distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PoissonFunctionInfo.Fact(System.Int32)">
<summary>
Returns the factorial of a number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.PoissonFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PoissonFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PoissonFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.PoissonFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ProbFunctionInfo">
<summary>
Returns the probability that values in a range are between two limits.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ProbFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ProbFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ProbFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ProbFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ProbFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.QuartileFunctionInfo">
<summary>
Returns the quartile (of which quarter or 25 percent) of a data set.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.QuartileFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.QuartileFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.QuartileFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.QuartileFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RankFunctionInfo">
<summary>
Returns the rank of a number in a set of numbers.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RankFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RankFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RankFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RankFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RankFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RSqFunctionInfo">
<summary>
Represents the RSQ function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RSqFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RSqFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RSqFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RSqFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SkewFunctionInfo">
<summary>
Returns the skewness of a distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SkewFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SkewFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SkewFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SkewFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SkewFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SlopeFunctionInfo">
<summary>
Calculates the slope of a linear regression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SlopeFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SlopeFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SlopeFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SlopeFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SlopeFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SmallFunctionInfo">
<summary>
Returns the nth smallest value in a data set.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SmallFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SmallFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SmallFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SmallFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SmallFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.StandardizeFunctionInfo">
<summary>
Returns a normalized value from a distribution characterized by mean and standard deviation.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StandardizeFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StandardizeFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StandardizeFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StandardizeFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.StDevFunctionInfo">
<summary>
Returns the standard deviation for a set of numbers.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StDevFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StDevFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StDevFunctionInfo.Evaluate(System.Object[],System.Boolean)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.StDevAFunctionInfo">
<summary>
Returns the standard deviation for a set of numbers.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StDevAFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StDevAFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevAFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevAFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevAFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.StDevPFunctionInfo">
<summary>
Calculates standard deviation based on the entire population given as arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StDevPFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StDevPFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StDevPFunctionInfo.Evaluate(System.Object[],System.Boolean)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevPFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevPFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevPFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.StDevPAFunctionInfo">
<summary>
Calculates standard deviation based on the entire population given as arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StDevPAFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StDevPAFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevPAFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevPAFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StDevPAFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.StEyxFunctionInfo">
<summary>
Returns the standard error of the predicted y value for each x.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StEyxFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StEyxFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StEyxFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StEyxFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StEyxFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TDistFunctionInfo">
<summary>
Returns the probability for the t-distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TDistFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TDistFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TDistFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TDistFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TInvFunctionInfo">
<summary>
Returns the t-value of the t-distribution as a function of the probability and the degrees of freedom.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TInvFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TInvFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TInvFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TInvFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TrimMeanFunctionInfo">
<summary>
Returns the mean of a subset of data excluding the topmost and bottommost data.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TrimMeanFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TrimMeanFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrimMeanFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrimMeanFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrimMeanFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TTestFunctionInfo">
<summary>
Returns the probability associated with a t-test.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TTestFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TTestFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TTestFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TTestFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.VarFunctionInfo">
<summary>
Calculates variance based on a sample of a population.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.VarFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.VarFunctionInfo.Evaluate(System.Object[],System.Boolean)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.VarAFunctionInfo">
<summary>
Calculates variance based on a sample of a population.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.VarAFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarAFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarAFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarAFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.VarPFunctionInfo">
<summary>
Calculates variance based on the entire population.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.VarPFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.VarPFunctionInfo.Evaluate(System.Object[],System.Boolean)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarPFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarPFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarPFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.VarPAFunctionInfo">
<summary>
Calculates variance based on the entire population.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.VarPAFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarPAFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarPAFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.VarPAFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.WeibullFunctionInfo">
<summary>
Returns the two-parameter Weibull distribution.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.WeibullFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WeibullFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WeibullFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.WeibullFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ZTestFunctionInfo">
<summary>
Returns the significance value of a z-test.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ZTestFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ZTestFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ZTestFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ZTestFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ZTestFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CountFunctionInfo">
<summary>
Counts the number of number values in the arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountFunctionInfo.Evaluate(System.Object[],System.Boolean)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CountAFunctionInfo">
<summary>
Counts the number of number values in the arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountAFunctionInfo.AcceptsError(System.Int32)">
<summary>
Indicates whether the Evaluate method can process CalcError values.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountAFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountAFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CountAFunctionInfo.Evaluate(System.Object[],System.Boolean)">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountAFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountAFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CountAFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FrequencyFunctionInfo">
<summary>
Returns the number of possible permutations for a specified number of items.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FrequencyFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FrequencyFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FrequencyFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FrequencyFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FrequencyFunctionInfo.ConcreteArray">
<summary>
A concrete implementation of the CalcArray class.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TrendFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TrendFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TrendFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrendFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrendFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrendFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TrendFunctionInfo.ConcreteArray">
<summary>
A concrete implementation of the CalcArray class.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TrendFunctionInfo.DefaultKnownX">
<summary>
A concrete implementation of the CalcArray class.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.GrowthFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GrowthFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.GrowthFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GrowthFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GrowthFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.GrowthFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.GrowthFunctionInfo.ConcreteArray">
<summary>
A concrete implementation of the CalcArray class.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.GrowthFunctionInfo.DefaultKnownX">
<summary>
A concrete implementation of the CalcArray class.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LinEstFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LinEstFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LinEstFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LinEstFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LinEstFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LinEstFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LinEstFunctionInfo.ConcreteArray">
<summary>
A concrete implementation of the CalcArray class.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LinEstFunctionInfo.DefaultKnownX">
<summary>
A concrete implementation of the CalcArray class.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LogEstFunctionInfo">
<summary>
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LogEstFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LogEstFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogEstFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogEstFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LogEstFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LogEstFunctionInfo.ConcreteArray">
<summary>
A concrete implementation of the CalcArray class.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LogEstFunctionInfo.DefaultKnownX">
<summary>
A concrete implementation of the CalcArray class.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AverageIfFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AverageIfFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AverageIfFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageIfFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageIfFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageIfFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AverageIfsFunctionInfo.AcceptsReference(System.Int32)">
<summary>
Indicates whether the Evaluate method can process references.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.AverageIfsFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageIfsFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageIfsFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.AverageIfsFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CharFunctionInfo">
<summary>
Returns the character specified by a number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CharFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CharFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CharFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CharFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CleanFunctionInfo">
<summary>
Removes all nonprintable characters from text.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CleanFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CleanFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CleanFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CleanFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CodeFunctionInfo">
<summary>
Returns a numeric code to represent the first character in a text string.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CodeFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CodeFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CodeFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CodeFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ConcatenateFunctionInfo">
<summary>
Combines multiple text strings or numbers into one text string.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ConcatenateFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ConcatenateFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ConcatenateFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ConcatenateFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DollarFunctionInfo">
<summary>
Converts a number to text using currency format, with the decimals rounded to the specified place.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DollarFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DollarFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DollarFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DollarFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DollarFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExactFunctionInfo">
<summary>
Returns 1 (True) if two strings are the same; otherwise, 0 (False).
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExactFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExactFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExactFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExactFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FindFunctionInfo">
<summary>
Finds one text value within another.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FindFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FindFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FindFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FindFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FindFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FixedFunctionInfo">
<summary>
Rounds a number to the specified number of decimals, formats the number in decimal format using a period and commas, and returns the result as text.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FixedFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FixedFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FixedFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FixedFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FixedFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LeftFunctionInfo">
<summary>
Returns the first (or leftmost) characters from a text value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LeftFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LeftFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LeftFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LeftFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LeftFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LenFunctionInfo">
<summary>
Returns the number of characters in a text string.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LenFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LenFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LenFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LenFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.LowerFunctionInfo">
<summary>
Converts text to lowercase letters.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.LowerFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LowerFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LowerFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.LowerFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MidFunctionInfo">
<summary>
Returns the requested number of characters from a text string starting at the position you specify.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MidFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MidFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MidFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MidFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ProperFunctionInfo">
<summary>
Capitalizes the first letter in each word of a text string.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ProperFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ProperFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ProperFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ProperFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ReplaceFunctionInfo">
<summary>
Replaces part of a text string with a different text string.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ReplaceFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReplaceFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReplaceFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReplaceFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ReptFunctionInfo">
<summary>
Repeats text a specified number of times.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ReptFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReptFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReptFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReptFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RightFunctionInfo">
<summary>
Returns the rightmost characters from a text value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RightFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Indicates whether the Evaluate method can process missing arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RightFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RightFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RightFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RightFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.SubstituteFunctionInfo">
<summary>
Substitutes a new string for specified characters in an existing string.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SubstituteFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SubstituteFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SubstituteFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SubstituteFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TrimFunctionInfo">
<summary>
Removes extra spaces from a string and leaves single spaces between words.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TrimFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrimFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrimFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TrimFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.UpperFunctionInfo">
<summary>
Converts text to uppercase.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.UpperFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.UpperFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.UpperFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.UpperFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.TFunctionInfo">
<summary>
Returns the text referred to by value.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ValueFunctionInfo">
<summary>
Converts a string that represents a number to a number.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ValueFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ValueFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ValueFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ValueFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.SearchFunctionInfo.AcceptsMissingArgument(System.Int32)">
<summary>
Determines whether the function accepts CalcMissingArgument values
for the specified argument.
</summary>
<param name="i">Index of the argument</param>
<returns>
True if the function accepts CalcReference values for the specified argument; false otherwise
</returns>
</member>
<member name="M:FarPoint.CalcEngine.SearchFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SearchFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SearchFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.SearchFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TextFunctionInfo.Evaluate(System.Object[])">
<summary>
Evaluates the function with the given arguments.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.TextFunctionInfo.ParseString(System.String@)">
<summary>
</summary>
<param name="format"></param>
<returns></returns>
</member>
<member name="P:FarPoint.CalcEngine.TextFunctionInfo.Name">
<summary>
Gets the name of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TextFunctionInfo.MinArgs">
<summary>
Gets the minimum number of arguments for the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.TextFunctionInfo.MaxArgs">
<summary>
Gets the maximum number of arguments for the function.
</summary>
</member>
</members>
</doc>