OfficeIMO

API Reference

Struct

ExcelCellValue

Namespace OfficeIMO.Excel
Assembly OfficeIMO.Excel
Base ValueType
Modifiers sealed

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

Constructors

public ExcelCellValue(Object value) #

Creates a handled result carrying a custom value.

Parameters

value System.Object requiredposition: 0

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.