Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Sets or returns a cell value.  Empty cells will return either null or empty string.{excerpt}
{signature:C#}
 public System.Object Value{ get; set; }
{signature}{signature:vb.net}
Public Property Value() As Object
{signature}
{example}{code:csharp|title=C#}

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

          //--- Set Value
          cellA1.Value = "value";
        {code}
{code:vb.net|title=vb.net}

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

          '--- Set Value
          cellA1.Value = "value"
        {code}

{example}
{scrollbar}