Message-ID: <1379722715.9823.1711704093819.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_9822_1593924599.1711704093819" ------=_Part_9822_1593924599.1711704093819 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Cell.Value

Cell.Value

Description

=20

Sets or returns a cell value.  Empty cells will return either null = or empty string.

=20
C#
=20
 public System.Object Value{ get; set; }
=20
=20
vb.net
=20
Public Property Value() As Object
=20
=20

Examples

=20
C#
=20

          //--- Get Value
          Object cellValue =3D cellA1.Value;

          //--- Set Value
          cellA1.Value =3D "value";
        
=20
=20
vb.net
=20

          '--- Get Value
          Dim cellValue As Object =3D cellA1.Value

          '--- Set Value
          cellA1.Value =3D "value"
        
=20
------=_Part_9822_1593924599.1711704093819--