[]
        
(Showing Draft Content)

FarPoint.Win.Spread.Model.ITableRangeManager.Find

Find Method

Find(string)

Finds an ITableRange by its name.

Declaration
ITableRange Find(string tableName)
Function Find(tableName As String) As ITableRange
Parameters
Type Name Description
string tableName

Table's name

Returns
Type Description
ITableRange

An ITableRange object. Null if not found

Find(int, int)

Finds an ITableRange from specified row and column.

Declaration
ITableRange Find(int row, int column)
Function Find(row As Integer, column As Integer) As ITableRange
Parameters
Type Name Description
int row

Row index

int column

Column Index

Returns
Type Description
ITableRange

An ITableRange object. Null if not found

Find(int, int, int, int)

Gets a list of ITableRange objects from a specific cell range.

Declaration
List<ITableRange> Find(int row, int col, int rowCount, int colCount)
Function Find(row As Integer, col As Integer, rowCount As Integer, colCount As Integer) As List(Of ITableRange)
Parameters
Type Name Description
int row

Row index

int col

Column index

int rowCount

Row count

int colCount

Column count

Returns
Type Description
List<ITableRange>

A list of ITableRange object. Null if not found