InnerListColumn Constructors

Definition

Overloads

InnerListColumn(UIPropertyGroupDescription)

Initializes a new instance of InnerListColumn class with the specified data description, and creates a simple binding to its property. The column will be initially visible by default.

InnerListColumn(UIPropertyGroupDescription, Boolean)

Initializes a new instance of InnerListColumn class with the specified data description and visibility, and creates a simple binding to its property.

InnerListColumn(UIPropertyGroupDescription, Boolean, Boolean)

Initializes a new instance of InnerListColumn class with the specified data description and visibility.

InnerListColumn(UIPropertyGroupDescription)

Initializes a new instance of InnerListColumn class with the specified data description, and creates a simple binding to its property. The column will be initially visible by default.

public:
 InnerListColumn(Microsoft::Management::UI::Internal::UIPropertyGroupDescription ^ dataDescription);
public InnerListColumn (Microsoft.Management.UI.Internal.UIPropertyGroupDescription dataDescription);
new Microsoft.Management.UI.Internal.InnerListColumn : Microsoft.Management.UI.Internal.UIPropertyGroupDescription -> Microsoft.Management.UI.Internal.InnerListColumn
Public Sub New (dataDescription As UIPropertyGroupDescription)

Parameters

dataDescription
UIPropertyGroupDescription

The property description for this column's data.

Applies to

InnerListColumn(UIPropertyGroupDescription, Boolean)

Initializes a new instance of InnerListColumn class with the specified data description and visibility, and creates a simple binding to its property.

public:
 InnerListColumn(Microsoft::Management::UI::Internal::UIPropertyGroupDescription ^ dataDescription, bool isVisible);
public InnerListColumn (Microsoft.Management.UI.Internal.UIPropertyGroupDescription dataDescription, bool isVisible);
new Microsoft.Management.UI.Internal.InnerListColumn : Microsoft.Management.UI.Internal.UIPropertyGroupDescription * bool -> Microsoft.Management.UI.Internal.InnerListColumn
Public Sub New (dataDescription As UIPropertyGroupDescription, isVisible As Boolean)

Parameters

dataDescription
UIPropertyGroupDescription

The property description for this column's data.

isVisible
Boolean

Whether the column is initially visible.

Applies to

InnerListColumn(UIPropertyGroupDescription, Boolean, Boolean)

Initializes a new instance of InnerListColumn class with the specified data description and visibility.

public:
 InnerListColumn(Microsoft::Management::UI::Internal::UIPropertyGroupDescription ^ dataDescription, bool isVisible, bool createDefaultBinding);
public InnerListColumn (Microsoft.Management.UI.Internal.UIPropertyGroupDescription dataDescription, bool isVisible, bool createDefaultBinding);
new Microsoft.Management.UI.Internal.InnerListColumn : Microsoft.Management.UI.Internal.UIPropertyGroupDescription * bool * bool -> Microsoft.Management.UI.Internal.InnerListColumn
Public Sub New (dataDescription As UIPropertyGroupDescription, isVisible As Boolean, createDefaultBinding As Boolean)

Parameters

dataDescription
UIPropertyGroupDescription

The description of the data this column is bound to.

isVisible
Boolean

Whether the column is initially visible.

createDefaultBinding
Boolean

Whether the column should create a default binding using the specified data's property.

Applies to