Cell class

Office 2013 and later

Cell. When the object is serialized out as xml, its qualified name is x:c.

Namespace:  DocumentFormat.OpenXml.Spreadsheet
Assembly:  DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)

No code example is currently available or this language may not be supported.

[ISO/IEC 29500-1 1st Edition]

c (Cell)

This collection represents a cell in the worksheet. Information about the cell's location (reference), value, data type, formatting, and formula is expressed here.

[Example:This example shows the information stored for a cell whose address in the grid is C6, whose style index is '6', and whose value metadata index is '15'. The cell contains a formula as well as a calculated result of that formula.

<c r="C6" s="1" vm="15">
  <f>CUBEVALUE("xlextdat9 Adventure Works",C$5,$A6)</f>
  <v>2838512.355</v>
</c>

end example]

While a cell can have a formula element f and a value element v, when the cell's type t is inlineStr then only the element is is allowed as a child element.

[Example:

Here is an example of expressing a string in the cell rather than using the shared string table.

<row r="1" spans="1:1">
  <c r="A1" t="inlineStr">
    <is><t>This is inline string example</t></is>
  </c>
</row>

end example]

Parent Elements

row (§18.3.1.73)

Child Elements

Subclause

extLst (Future Feature Data Storage Area)

§18.2.10

f (Formula)

§18.3.1.40

is (Rich Text Inline)

§18.3.1.53

v (Cell Value)

§18.3.1.96

Attributes

Description

cm (Cell Metadata Index)

The zero-based index of the cell metadata record associated with this cell. Metadata information is found in the Metadata Part. Cell metadata is extra information stored at the cell level, and is attached to the cell (travels through moves, copy / paste, clear, etc). Cell metadata is not accessible via formula reference.

The possible values for this attribute are defined by the W3C XML Schema unsignedInt datatype.

ph (Show Phonetic)

A Boolean value indicating if the spreadsheet application should show phonetic information. Phonetic information is displayed in the same cell across the top of the cell and serves as a 'hint' which indicates how the text should be pronounced. This should only be used for East Asian languages.

The possible values for this attribute are defined by the W3C XML Schema boolean datatype.

r (Reference)

An A1 style reference to the location of this cell

The possible values for this attribute are defined by the ST_CellRef simple type (§18.18.7).

s (Style Index)

The index of this cell's style. Style records are stored in the Styles Part.

The possible values for this attribute are defined by the W3C XML Schema unsignedInt datatype.

t (Cell Data Type)

An enumeration representing the cell's data type.

The possible values for this attribute are defined by the ST_CellType simple type (§18.18.11).

vm (Value Metadata Index)

The zero-based index of the value metadata record associated with this cell's value. Metadata records are stored in the Metadata Part. Value metadata is extra information stored at the cell level, but associated with the value rather than the cell itself. Value metadata is accessible via formula reference.

The possible values for this attribute are defined by the W3C XML Schema unsignedInt datatype.

[Note: The W3C XML Schema definition of this element’s content model (CT_Cell) is located in §A.2. end note]

© ISO/IEC29500: 2008.

The following code example creates a new workbook, inserts a worksheet into it, and writes the word “Microsoft” in a specified cell address.

No code example is currently available or this language may not be supported.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Show: