MdxScriptCollection.Item Property (String)
Gets the MdxScript, with the specified identifier, from the collection.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
id As String _
) As MdxScript
Get
'Usage
Dim instance As MdxScriptCollection
Dim id As String
Dim value As MdxScript
value = instance(id)
public MdxScript this[
string id
] { get; }
public:
property MdxScript^ default[String^ id] {
MdxScript^ get (String^ id);
}
member Item : MdxScript
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- id
Type: System.String
The identifier of the MdxScript to be returned.
Property Value
Type: Microsoft.AnalysisServices.MdxScript
The MdxScript specified by the identifier.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | id is a null reference (Nothing in Visual Basic). |
ItemNotFoundException | id does not exist in the collection. |