Class CompileResult
- Assembly
- EPPlus.dll
Compile result
public class CompileResult : CompileResultBase
- Inheritance
-
CompileResult
- Derived
- Inherited Members
Constructors
CompileResult(ExcelErrorValue)
Compile result with error value
public CompileResult(ExcelErrorValue errorValue)
Parameters
errorValue
ExcelErrorValue
CompileResult(eErrorType)
Compile result with error type
public CompileResult(eErrorType errorType)
Parameters
errorType
eErrorType
CompileResult(object, DataType)
Constructor
public CompileResult(object result, DataType dataType)
Parameters
Properties
Address
Range address
public virtual FormulaRangeAddress Address { get; }
Property Value
DataType
Data type
public DataType DataType { get; }
Property Value
Empty
Returns a CompileResult with a null value and data type set to DataType.Empty
public static CompileResult Empty { get; }
Property Value
False
Returns a CompileResult instance with a boolean value of false.
public static CompileResult False { get; }
Property Value
IsDateString
Is date string
public bool IsDateString { get; }
Property Value
IsHiddenCell
Is hidden cell
public bool IsHiddenCell { get; set; }
Property Value
IsNumeric
Is the result numeric
public bool IsNumeric { get; }
Property Value
IsNumericString
Is result numeric string
public bool IsNumericString { get; }
Property Value
IsPercentageString
Is percentage string
public bool IsPercentageString { get; }
Property Value
IsResultOfResolvedExcelRange
Is result of resolved excelRange
public bool IsResultOfResolvedExcelRange { get; }
Property Value
IsResultOfSubtotal
Is result of subtotal
public bool IsResultOfSubtotal { get; set; }
Property Value
Result
RESULT
public object Result { get; }
Property Value
ResultNumeric
Result numeric
public double ResultNumeric { get; }
Property Value
ResultType
Result type
public override CompileResultType ResultType { get; }
Property Value
ResultValue
Result Value
public object ResultValue { get; }
Property Value
True
Returns a CompileResult instance with a boolean value of true.
public static CompileResult True { get; }
Property Value
ZeroDecimal
Returns a CompileResult instance with a decimal value of 0.
public static CompileResult ZeroDecimal { get; }
Property Value
ZeroInt
Returns a CompileResult instance with a integer value of 0.
public static CompileResult ZeroInt { get; }
Property Value
Methods
GetErrorResult(eErrorType)
Returns a CompileResult from the error type/>
public static CompileResult GetErrorResult(eErrorType errorType)
Parameters
errorType
eErrorTypeThe type of error.
Returns
- CompileResult
The CompileResult with a the value containing the ExcelErrorValue for the type.