Spread Windows Forms 6.0 Product Documentation
Find Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetSpanModel Class : Find Method


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

Glossary Item Box

Finds the cell span in the collection that includes the cell at specified row and column.

Syntax

Visual Basic (Declaration) 
Public Overrides Function Find( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As CellRange
Visual Basic (Usage)Copy Code
Dim instance As DefaultSheetSpanModel
Dim row As Integer
Dim column As Integer
Dim value As CellRange
 
value = instance.Find(row, column)
C# 
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.
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 BasicCopy 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

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