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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also