PerspectiveAttributeCollection.Add 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
Add(PerspectiveAttribute) |
Adds the specified PerspectiveAttribute to the end of the collection. |
Add(String) |
Creates a new PerspectiveAttribute object using the specified AttributeID, adds it to the end of the collection and returns the new PerspectiveAttribute created. |
Add(PerspectiveAttribute)
Adds the specified PerspectiveAttribute to the end of the collection.
public int Add (Microsoft.AnalysisServices.PerspectiveAttribute item);
override this.Add : Microsoft.AnalysisServices.PerspectiveAttribute -> int
Public Function Add (item As PerspectiveAttribute) As Integer
Parameters
- item
- PerspectiveAttribute
The PerspectiveAttribute to be added.
Returns
The zero-based index at which the PerspectiveAttribute 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 AttributeID of the specified PerspectiveAttribute is not valid in the collection.
- The name of the specified PerspectiveAttribute is not valid in the collection.
- The compatibility-level of the specified PerspectiveAttribute is not valid in the collection.
Applies to
Add(String)
Creates a new PerspectiveAttribute object using the specified AttributeID, adds it to the end of the collection and returns the new PerspectiveAttribute created.
public Microsoft.AnalysisServices.PerspectiveAttribute Add (string attributeId);
override this.Add : string -> Microsoft.AnalysisServices.PerspectiveAttribute
Public Function Add (attributeId As String) As PerspectiveAttribute
Parameters
- attributeId
- String
The AttributeID for the new PerspectiveAttribute object.
Returns
The newly created PerspectiveAttribute object.
Exceptions
The specified AttributeID is not valid in the collection.