Spread ASP.NET 6.0 Product Documentation
SearchHeaders(Int32,String,Boolean,Int32,Int32) Method
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > FpSpread Class > SearchHeaders Method : SearchHeaders(Int32,String,Boolean,Int32,Int32) Method


sheetIndex
Index of sheet on which to search
searchString
String for which to search
searchRowHeaders
Whether to search row headers instead of column headers
foundRowIndex
Index of row at which match is found
foundColumnIndex
Index of column at which match is found

Glossary Item Box

Searches the text in the header cells in the specified sheet for the specified string with the specified criteria.

Syntax

Visual Basic (Declaration) 
Public Overloads Function SearchHeaders( _
   ByVal sheetIndex As Integer, _
   ByVal searchString As String, _
   ByVal searchRowHeaders As Boolean, _
   ByRef foundRowIndex As Integer, _
   ByRef foundColumnIndex As Integer _
) As SearchFoundFlags
Visual Basic (Usage)Copy Code
Dim instance As FpSpread
Dim sheetIndex As Integer
Dim searchString As String
Dim searchRowHeaders As Boolean
Dim foundRowIndex As Integer
Dim foundColumnIndex As Integer
Dim value As SearchFoundFlags
 
value = instance.SearchHeaders(sheetIndex, searchString, searchRowHeaders, foundRowIndex, foundColumnIndex)
C# 
public SearchFoundFlags SearchHeaders( 
   int sheetIndex,
   string searchString,
   bool searchRowHeaders,
   ref int foundRowIndex,
   ref int foundColumnIndex
)

Parameters

sheetIndex
Index of sheet on which to search
searchString
String for which to search
searchRowHeaders
Whether to search row headers instead of column headers
foundRowIndex
Index of row at which match is found
foundColumnIndex
Index of column at which match is found

Return Value

SearchFoundFlags setting, that specifies in what type of object the string was found, is returned.

Also, the foundRowIndex and foundColumnIndex parameters return the row index and column index of the cell in which the string is found.

Example

This example uses the SearchHeaders method.
C#Copy Code
// Page Load
FpSpread1.Sheets[0].RowHeader.Cells[0, 0].Text = "Row Header";
private void Button1_Click(object sender, System.EventArgs e)
{ 
int x = 0;
int y = 0;
FarPoint.Web.Spread.SearchFoundFlags sff;
sff = FpSpread1.SearchHeaders(0, "Row Header", true, ref x, ref y);
ListBox1.Items.Add(sff.ToString());
ListBox1.Items.Add(x.ToString());
ListBox1.Items.Add(y.ToString());
}
Visual BasicCopy Code
' Page Load
FpSpread1.Sheets(0).RowHeader.Cells(0, 0).Text = "Row Header"

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim x As Integer
Dim y As Integer
Dim sff As FarPoint.Web.Spread.SearchFoundFlags
sff = FpSpread1.SearchHeaders(0, "Row Header", True, x, y)
ListBox1.Items.Add(sff.ToString())
ListBox1.Items.Add(x)
ListBox1.Items.Add(y)
End Sub

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.