FarPoint.Web.Spread 名前空間 > FpSpread クラス > Search メソッド : Search(Int32,String,Boolean,Boolean,Boolean,Boolean,Int32,Int32,Int32,Int32,Int32,Int32) メソッド |
'Declaration
Public Overloads Function Search( _ ByVal sheetIndex As Integer, _ ByVal searchString As String, _ ByVal caseSensitive As Boolean, _ ByVal exactMatch As Boolean, _ ByVal alternateSearch As Boolean, _ ByVal useWildcards As Boolean, _ ByVal startRowIndex As Integer, _ ByVal startColumnIndex As Integer, _ ByVal endRowIndex As Integer, _ ByVal endColumnIndex As Integer, _ ByRef foundRowIndex As Integer, _ ByRef foundColumnIndex As Integer _ ) As String
public string Search( int sheetIndex, string searchString, bool caseSensitive, bool exactMatch, bool alternateSearch, bool useWildcards, int startRowIndex, int startColumnIndex, int endRowIndex, int endColumnIndex, ref int foundRowIndex, ref int foundColumnIndex )
指定した文字列が見つかった string 全体が返されます。
また、foundRowIndex パラメータと foundColumnIndex パラメータは、文字列が見つかったセルの行インデックスおよび列インデックスを返します。
int x = 0; int y = 0; FpSpread1.Search(0, "te*t", false, false, false, true, 0, 0, 2, 2, ref x, ref y); ListBox1.Items.Add(x.ToString()); ListBox1.Items.Add(y.ToString());
Dim x As Integer Dim y As Integer FpSpread1.Search(0, "te*t", False, False, False, True, 0, 0, 2, 2, x, y) ListBox1.Items.Add(x) ListBox1.Items.Add(y)