Spread for ASP.NET 7.0 Product Documentation
Cells Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : Cells Property


Glossary Item Box

Gets the cells in the data area of the sheet.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Cells As Cells
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As Cells
 
value = instance.Cells
C# 
public Cells Cells {get;}

Property Value

Cells object with the cells

Remarks

This property is available at run time only.

This property allows reference to a cell or several cells in the sheet.

Example

This example assigns a SheetView object to the active sheet and creates a Border object. The border is then applied to all the cells in the sheet, and the cells spacing is increased to 5.
C#Copy Code
FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView;
FarPoint.Web.Spread.Border bord = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Teal, 2);
int i, j;
for (i = 0; i <= 2; i++)
{
     for (j = 0; j <= 3; j++)
          sv.Cells[i, j].Border = bord;
}
sv.CellSpacing = 5;
Visual BasicCopy Code
Dim sv As FarPoint.Web.Spread.SheetView
Dim bord As New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Teal, 2)
Dim i, j As Integer
sv = FpSpread1.ActiveSheetView
For i = 0 To 2
      For j = 0 To 3
            sv.Cells(i, j).Border = bord
      Next j
Next i
sv.CellSpacing = 5

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.