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}A [Cells|Cells] collection represents the set of cells in a worksheet.{excerpt}
{signature:C#}
[DefaultMember("Item")]
 public sealed class Cells
{signature}{signature:vb.net}
<DefaultMember("Item")> _
	Public NotInheritable Class Cells
{signature}
{example}{code:csharp|title=C#}

          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Create();
          Worksheet ws = wb.Worksheets[0];
          Cells cls = ws.Cells;
        {code}
{code:vb.net|title=vb.net}

          Dim xla As New ExcelApplication()
          Dim wb As Workbook = xla.Create()
          Dim ws As Worksheet = wb.Worksheets(0)
          Dim cls As Cells = ws.Cells
        {code}

{example}
{indexers}
||Name||Description||
|[Item(Int32, Int32)|Cells.Item(Int32, Int32)]|{excerpt-include:Cells.Item(Int32, Int32)|nopanel=true}|
|[Item(String)|Cells.Item(String)]|{excerpt-include:Cells.Item(String)|nopanel=true}|
{scrollbar}