Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

A Cells collection represents the set of cells in a worksheet.

{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
        
Signature
C#C#
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}{signature:vb.net
vb.net
}
<DefaultMember("Item")> _
	Public NotInheritable Class Cells
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle
Indexers

...

Name

...

Description

{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}