AttributeBinding Constructors

Definition

Overloads

AttributeBinding()

Initializes a new instance of the AttributeBinding class using the default values.

AttributeBinding(String, AttributeBindingType)

Initializes a new instance of the AttributeBinding class using the specified attribute identifier and type.

AttributeBinding(String, AttributeBindingType, Int32)

Initializes a new instance of the AttributeBinding class using the specified attribute identifier and type, and an ordinal value.

AttributeBinding()

Initializes a new instance of the AttributeBinding class using the default values.

public AttributeBinding ();
Public Sub New ()

Applies to

AttributeBinding(String, AttributeBindingType)

Initializes a new instance of the AttributeBinding class using the specified attribute identifier and type.

public AttributeBinding (string attributeId, Microsoft.AnalysisServices.AttributeBindingType type);
new Microsoft.AnalysisServices.AttributeBinding : string * Microsoft.AnalysisServices.AttributeBindingType -> Microsoft.AnalysisServices.AttributeBinding
Public Sub New (attributeId As String, type As AttributeBindingType)

Parameters

attributeId
String

A String that contains a unique identifier for the attribute.

type
AttributeBindingType

The attribute binding type.

Applies to

AttributeBinding(String, AttributeBindingType, Int32)

Initializes a new instance of the AttributeBinding class using the specified attribute identifier and type, and an ordinal value.

public AttributeBinding (string attributeId, Microsoft.AnalysisServices.AttributeBindingType type, int ordinal);
new Microsoft.AnalysisServices.AttributeBinding : string * Microsoft.AnalysisServices.AttributeBindingType * int -> Microsoft.AnalysisServices.AttributeBinding
Public Sub New (attributeId As String, type As AttributeBindingType, ordinal As Integer)

Parameters

attributeId
String

A String that contains a unique identifier for the attribute.

type
AttributeBindingType

The attribute binding type.

ordinal
Int32

For key and translation, this indicates the ordinal number within that collection to bind to.

Applies to