ColumnHashSetFilter Constructors

Definition

Overloads

ColumnHashSetFilter(ITableColumnDefinition, IEnumerable<String>)

Create a filter that for column that exludes entries if their column's untruncated text matches any string in excluded.

ColumnHashSetFilter(ITableColumnDefinition, String[])

Create a filter that for column that exludes entries if their column's untruncated text matches any string in excluded.

ColumnHashSetFilter(ITableColumnDefinition, IEnumerable<String>)

Create a filter that for column that exludes entries if their column's untruncated text matches any string in excluded.

public:
 ColumnHashSetFilter(Microsoft::VisualStudio::Shell::TableControl::ITableColumnDefinition ^ column, System::Collections::Generic::IEnumerable<System::String ^> ^ excluded);
public ColumnHashSetFilter (Microsoft.VisualStudio.Shell.TableControl.ITableColumnDefinition column, System.Collections.Generic.IEnumerable<string> excluded);
new Microsoft.VisualStudio.Shell.TableControl.ColumnHashSetFilter : Microsoft.VisualStudio.Shell.TableControl.ITableColumnDefinition * seq<string> -> Microsoft.VisualStudio.Shell.TableControl.ColumnHashSetFilter
Public Sub New (column As ITableColumnDefinition, excluded As IEnumerable(Of String))

Parameters

column
ITableColumnDefinition

Column used to filter the entries.

excluded
IEnumerable<String>

List of string used to exclude entries.

Remarks

The string is comparison done using Ordinal.

Applies to

ColumnHashSetFilter(ITableColumnDefinition, String[])

Create a filter that for column that exludes entries if their column's untruncated text matches any string in excluded.

public:
 ColumnHashSetFilter(Microsoft::VisualStudio::Shell::TableControl::ITableColumnDefinition ^ column, ... cli::array <System::String ^> ^ excluded);
public ColumnHashSetFilter (Microsoft.VisualStudio.Shell.TableControl.ITableColumnDefinition column, params string[] excluded);
new Microsoft.VisualStudio.Shell.TableControl.ColumnHashSetFilter : Microsoft.VisualStudio.Shell.TableControl.ITableColumnDefinition * string[] -> Microsoft.VisualStudio.Shell.TableControl.ColumnHashSetFilter
Public Sub New (column As ITableColumnDefinition, ParamArray excluded As String())

Parameters

column
ITableColumnDefinition

Column used to filter the entries.

excluded
String[]

List of string used to exclude entries.

Remarks

The string comparison is done using Ordinal.

Applies to