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


row
Row index of the cell
column
Column index of the cell

Glossary Item Box

Gets the span of cells at a specified cell.

Syntax

Visual Basic (Declaration) 
Public Overridable Function GetSpanCell( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As CellRange
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim value As CellRange
 
value = instance.GetSpanCell(row, column)
C# 
public virtual CellRange GetSpanCell( 
   int row,
   int column
)

Parameters

row
Row index of the cell
column
Column index of the cell

Return Value

CellRange object containing the range of cells included in the span with the specified cell

Remarks

Creating a span of cells creates one large cell where there had previously been several. For example, if you create a span of cells from cell A1 to cell C2, cell A1 then appears to occupy the space from cell A1 through cell C2.

When you create a span of cells, the data in the first cell in the span (designated by the row and column parameters) occupies all the space in the span. When you create a span, the data that was in each of the cells in the span is still in each cell, but not displayed. The data is simply hidden by the span range. Also, the cell types of the cells combined in the span are not changed.

You can add a span of cells by calling the AddSpanCell method. You can remove a span from a range of cells by calling the RemoveSpanCell method.

Note:You cannot sort a sheet that has spanned cells.

Example

This example returns the range of cells in the span.
C#Copy Code
FarPoint.Web.Spread.SheetView sv;
FarPoint.Web.Spread.Model.CellRange cr;
sv = FpSpread1.ActiveSheetView;
cr = sv.GetSpanCell(0, 0)
Response.Write("The span contains cells " + cr.Row + "," + cr.Column + "," + cr.RowCount + "," + cr.ColumnCount);
Visual BasicCopy Code
Dim sv As FarPoint.Web.Spread.SheetView
Dim cr As FarPoint.Web.Spread.Model.CellRange
sv = FpSpread1.ActiveSheetView
cr = sv.GetSpanCell(0, 0)
Response.Write("The span contains cells " & cr.Row & "," & cr.Column & "," & cr.RowCount & "," & cr.ColumnCount)

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.