API Reference
Struct
ExcelCellValue
Represents a custom-converted cell value. When Handled is true, Value should be used. When Handled is false, the built-in conversion pipeline should be used.
Inheritance
- ValueType
- ExcelCellValue
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Property ExcelCellValue.NotHandled
- Property ExcelReadOptions.CellValueConverter
Constructors
public ExcelCellValue(Object value) #Creates a handled result carrying a custom value.
Parameters
- value System.Object
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from ValueType
Parameters
- obj Object
Properties
public Boolean Handled { get; } #True when a custom converter produced a value and default conversion should be skipped.
public Object Value { get; } #The converted value to use when Handled is true.
public static ExcelCellValue NotHandled { get; } #Signals that the custom converter did not handle the cell; continue with default conversion.