DimensionAttributeCollection.Add Method

Definition

Overloads

Add()

Creates a new DimensionAttribute object using a generated unique Name and identifier, adds it to the end of the collection and returns the new DimensionAttribute created.

Add(DimensionAttribute)

Adds the specified DimensionAttribute to the end of the collection.

Add(String)

Creates a new DimensionAttribute object using the specified name, adds it to the end of the collection and returns the new DimensionAttribute created.

Add(String, String)

Creates a new DimensionAttribute object using the specified name and identifier, adds it to the end of the collection and returns the new DimensionAttribute created.

Add()

Creates a new DimensionAttribute object using a generated unique Name and identifier, adds it to the end of the collection and returns the new DimensionAttribute created.

public Microsoft.AnalysisServices.DimensionAttribute Add ();
override this.Add : unit -> Microsoft.AnalysisServices.DimensionAttribute
Public Function Add () As DimensionAttribute

Returns

The newly created DimensionAttribute object.

Applies to

Add(DimensionAttribute)

Adds the specified DimensionAttribute to the end of the collection.

public int Add (Microsoft.AnalysisServices.DimensionAttribute item);
override this.Add : Microsoft.AnalysisServices.DimensionAttribute -> int
Public Function Add (item As DimensionAttribute) As Integer

Parameters

item
DimensionAttribute

The DimensionAttribute to be added.

Returns

The zero-based index at which the DimensionAttribute has been added to the collection.

Exceptions

  • The specified item is a null reference (Nothing in Visual Basic).
  • The specified item already esists in the collection.
  • The identifier of the specified DimensionAttribute is not valid in the collection.
  • The name of the specified DimensionAttribute is not valid in the collection.
  • The compatibility-level of the specified DimensionAttribute is not valid in the collection.

Applies to

Add(String)

Creates a new DimensionAttribute object using the specified name, adds it to the end of the collection and returns the new DimensionAttribute created.

public Microsoft.AnalysisServices.DimensionAttribute Add (string name);
override this.Add : string -> Microsoft.AnalysisServices.DimensionAttribute
Public Function Add (name As String) As DimensionAttribute

Parameters

name
String

The Name for the new DimensionAttribute object.

Returns

The newly created DimensionAttribute object.

Exceptions

The specified name is not valid in the collection.

Remarks

The identifier for the new DimensionAttribute object is generated based on the specified name.

Applies to

Add(String, String)

Creates a new DimensionAttribute object using the specified name and identifier, adds it to the end of the collection and returns the new DimensionAttribute created.

public Microsoft.AnalysisServices.DimensionAttribute Add (string name, string id);
override this.Add : string * string -> Microsoft.AnalysisServices.DimensionAttribute
Public Function Add (name As String, id As String) As DimensionAttribute

Parameters

name
String

The Name for the new DimensionAttribute object.

id
String

The identifier for the new DimensionAttribute object.

Returns

The newly created DimensionAttribute object.

Exceptions

  • The specified name is not valid in the collection.
  • The specified identifier is not valid in the collection.

Applies to