BCGControlBar Library for .NET
SingleFilterMode Property




Gets or sets a value that switches between single and multiple filter modes.
Syntax
'Declaration
 
Public Property SingleFilterMode As Boolean
'Usage
 
Dim instance As GridData
Dim value As Boolean
 
instance.SingleFilterMode = value
 
value = instance.SingleFilterMode
public bool SingleFilterMode {get; set;}
public: __property bool get_SingleFilterMode();
public: __property void set_SingleFilterMode( 
   bool value
);
public:
property bool SingleFilterMode {
   bool get();
   void set (    bool value);
}
Remarks

In Single Filter mode filtering is performed at row level. For any given column (data index) you set GridDataRow.Filtered to true in order to filter out the row.

In Multiple Filter mode you filter out rows at the item level, e.g. you have to set GridDataItem.Filtered to true in order to filter out its row. In this way you can create filters using complicated conditions.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

GridData Class
GridData Members

Send Feedback