Spread Windows Forms 10.0 Product Documentation
Find Method (DefaultSheetSpanModel)
Example 


Row index of the cell
Column index of the cell
Finds the cell span in the collection that includes the cell at specified row and column.
Syntax
'Declaration
 
Public Overrides Function Find( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As CellRange
'Usage
 
Dim instance As DefaultSheetSpanModel
Dim row As Integer
Dim column As Integer
Dim value As CellRange
 
value = instance.Find(row, column)
public override CellRange Find( 
   int row,
   int column
)

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.
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());
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 Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

DefaultSheetSpanModel Class
DefaultSheetSpanModel Members

 

 


Copyright © GrapeCity, inc. All rights reserved.