ManagementList.AddColumn Method

Definition

Overloads

AddColumn(InnerListColumn)

Adds the specified column. Default filter rules for the column will be added if the filter is shown. A default search rule will be added if the search box is shown and the column's data type is searchable.

AddColumn(InnerListColumn, Boolean)

Adds the specified columns, and optionally default filter and search rules.

AddColumn(InnerListColumn)

Adds the specified column. Default filter rules for the column will be added if the filter is shown. A default search rule will be added if the search box is shown and the column's data type is searchable.

public:
 void AddColumn(Microsoft::Management::UI::Internal::InnerListColumn ^ column);
public void AddColumn (Microsoft.Management.UI.Internal.InnerListColumn column);
member this.AddColumn : Microsoft.Management.UI.Internal.InnerListColumn -> unit
Public Sub AddColumn (column As InnerListColumn)

Parameters

column
InnerListColumn

The column to add.

Exceptions

The specified value is a null reference.

Applies to

AddColumn(InnerListColumn, Boolean)

Adds the specified columns, and optionally default filter and search rules.

public:
 void AddColumn(Microsoft::Management::UI::Internal::InnerListColumn ^ column, bool addDefaultFilterRules);
public void AddColumn (Microsoft.Management.UI.Internal.InnerListColumn column, bool addDefaultFilterRules);
member this.AddColumn : Microsoft.Management.UI.Internal.InnerListColumn * bool -> unit
Public Sub AddColumn (column As InnerListColumn, addDefaultFilterRules As Boolean)

Parameters

column
InnerListColumn

The column to add.

addDefaultFilterRules
Boolean

Whether to add default filter rules for the specified column.

Exceptions

The specified value is a null reference.

Applies to