AttributeRelationshipCollection.Insert Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Insert(Int32, String) |
Creates a new AttributeRelationship object using the specified AttributeID, inserts it to the collection at the specified index and returns the new AttributeRelationship created. |
Insert(Int32, AttributeRelationship) |
Inserts the specified AttributeRelationship to the collection at the specified index. |
Insert(Int32, String)
Creates a new AttributeRelationship object using the specified AttributeID, inserts it to the collection at the specified index and returns the new AttributeRelationship created.
public Microsoft.AnalysisServices.AttributeRelationship Insert (int index, string attributeId);
override this.Insert : int * string -> Microsoft.AnalysisServices.AttributeRelationship
Public Function Insert (index As Integer, attributeId As String) As AttributeRelationship
Parameters
- index
- Int32
The zero-based index at which the AttributeRelationship is inserted.
- attributeId
- String
The AttributeID for the new AttributeRelationship object.
Returns
The newly created AttributeRelationship object.
Exceptions
The specified index is not a valid value (less than zero or bigger then the total number of elements).
The specified AttributeID is not valid in the collection.
Applies to
Insert(Int32, AttributeRelationship)
Inserts the specified AttributeRelationship to the collection at the specified index.
public void Insert (int index, Microsoft.AnalysisServices.AttributeRelationship item);
override this.Insert : int * Microsoft.AnalysisServices.AttributeRelationship -> unit
Public Sub Insert (index As Integer, item As AttributeRelationship)
Parameters
- index
- Int32
The zero-based index at which the AttributeRelationship is inserted.
The AttributeRelationship to be inserted.
Exceptions
The specified index is not a valid value (less than zero or bigger then the total number of elements).
- The specified item is a null reference (Nothing in Visual Basic).
- The specified item already esists in the collection.
- The AttributeID of the specified AttributeRelationship is not valid in the collection.
- The compatibility-level of the specified AttributeRelationship is not valid in the collection.