Spread Windows Forms 7.0 Product Documentation
GetRowHeaderSpanCell Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : GetRowHeaderSpanCell Method


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

Glossary Item Box

Gets the range of cells that are spanned at a specified cell on the row header of this sheet.

Syntax

Visual Basic (Declaration) 
Public Overridable Function GetRowHeaderSpanCell( _
   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.GetRowHeaderSpanCell(row, column)
C# 
public virtual CellRange GetRowHeaderSpanCell( 
   int row,
   int column
)

Parameters

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

Return Value

CellRange object that contains the span information, or null if no span exists

Example

This example uses the GetRowHeaderSpanCell method.
C#Copy Code
fpSpread1.Sheets[0].AddRowHeaderSpanCell(0, 0, 1, 2);
listBox1.Items.Add(fpSpread1.Sheets[0].GetRowHeaderSpanCell(0, 0).ToString());
Visual BasicCopy Code
FpSpread1.Sheets(0).AddRowHeaderSpanCell(0, 0, 1, 2)
ListBox1.Items.Add(FpSpread1.Sheets(0).GetRowHeaderSpanCell(0, 0).ToString())

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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