Finds the cell span in the collection that includes the cell at specified row and column.
Syntax
Parameters
- row
- Row index of the cell
- column
- Column index of the cell
Return Value
CellRange object containing the cell range with the specified cell
Example
This example finds the cell span in the collection that includes the specified cell.
C# | Copy Code |
---|
FarPoint.Win.Spread.Model.DefaultSheetSpanModel defspanModel = new FarPoint.Win.Spread.Model.DefaultSheetSpanModel();
FarPoint.Win.Spread.Model.CellRange cr;
fpSpread1.ActiveSheet.Models.Span = defspanModel;
defspanModel.Add(0, 0, 3, 3);
cr = defspanModel.Find(1, 1);
listBox1.Items.Add(cr.ToString()); |
Visual Basic | Copy Code |
---|
Dim defspanModel As New FarPoint.Win.Spread.Model.DefaultSheetSpanModel()
Dim cr As FarPoint.Win.Spread.Model.CellRange
FpSpread1.ActiveSheet.Models.Span = defspanModel
defspanModel.Add(0, 0, 3, 3)
cr = defspanModel.Find(1, 1)
ListBox1.Items.Add(cr.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