Table of Contents

Enum XlsxCellValueKind

Namespace
DocWright.Formats.Xlsx
Assembly
DocWright.Formats.Xlsx.dll

What a XlsxCellValue holds.

public enum XlsxCellValueKind

Fields

Blank = 0

No value. The cell still carries its style, which is how a blank cell is shaded or bordered.

Text = 1

Text, written as an inline string.

Number = 2

A number, written as a bare numeric cell so Excel can total it.

Boolean = 3

A boolean, written as t="b" with 0 or 1.

Date = 4

A date or time, written as a serial number under a date number format.

Error = 5

An error literal such as #VALUE!, written as t="e".