'Declaration
Public Overloads Function Search( _
ByVal As Integer, _
ByVal As String, _
ByVal As Boolean, _
ByVal As Boolean, _
ByVal As Boolean, _
ByVal As Boolean, _
ByVal As Integer, _
ByVal startColumnIndex As Integer, _
ByRef As Integer, _
ByRef foundColumnIndex As Integer _
) As String
'使用法
Dim instance As FpSpread
Dim sheetIndex As Integer
Dim searchString As String
Dim caseSensitive As Boolean
Dim exactMatch As Boolean
Dim alternateSearch As Boolean
Dim useWildcards As Boolean
Dim startRowIndex As Integer
Dim startColumnIndex As Integer
Dim foundRowIndex As Integer
Dim foundColumnIndex As Integer
Dim value As String
value = instance.Search(sheetIndex, searchString, caseSensitive, exactMatch, alternateSearch, useWildcards, startRowIndex, startColumnIndex, foundRowIndex, foundColumnIndex)
パラメータ
- sheetIndex
- 検索を行うシートのインデックス
- searchString
- 検索文字列
- caseSensitive
- 検索文字列の大文字と小文字を区別するかどうか
- exactMatch
- 完全一致のみを検索するかどうか
- alternateSearch
- 行、列の方向ではなく列、行の方向に検索するかどうか
- useWildcards
- 検索文字列のワイルドカード文字(*、?)を有効にするかどうか
- startRowIndex
- 開始行インデックス
- startColumnIndex
- 開始列インデックス
- foundRowIndex
- 検索文字列が見つかった行のインデックス
- foundColumnIndex
- 検索文字列が見つかった列のインデックス
戻り値の型
検索文字列が見つかったセルのテキストを含むString。セル内で文字列が見つからなかった場合はNullが返されます。
また、foundRowIndexとfoundColumnIndexは、文字列が見つかったセルの行インデックスおよび列インデックスを返します。
次のサンプルコードは、シートを検索して一致するセルを探し、そのセルの行インデックスと列インデックスをリストボックスに表示します。
int x = 0;
int y = 0;
fpSpread1.Search(0, "test", false, false, false, false, 0, 0, ref x, ref y);
listBox1.Items.Add(x);
listBox1.Items.Add(y);
Dim x As Integer
Dim y As Integer
FpSpread1.Search(0, "test", False, False, False, False, 0, 0, x, y)
ListBox1.Items.Add(x)
ListBox1.Items.Add(y)