FireDAC.Comp.DataSet.TFDIndex.FilterOptions

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

property FilterOptions: TFDExpressionOptions read FFilterOptions write SetFilterOptions default [];

C++

__property Firedac::Stan::Intf::TFDExpressionOptions FilterOptions = {read=FFilterOptions, write=SetFilterOptions, default=0};

プロパティ

種類 可視性 ソース ユニット
property published
FireDAC.Comp.DataSet.pas
FireDAC.Comp.DataSet.hpp
FireDAC.Comp.DataSet TFDIndex

説明

フィルタリング オプションを指定します。


FilterOptions を使用すると、データセット ビューのフィルタリング オプションを以下のように指定できます。

オプション 説明
ekNoCase 大文字/小文字を区別しない文字列比較が実行されます。
ekPartial 部分文字列比較が実行されます。

これらのオプションはすべて、Filter の補助的な構文要素を使ってプログラマの手で実装することができます(ekPartial については LIKE 演算子を使用し、ekNoCase については UPPER/LOWER 関数を使用します)。

関連項目