AccountCollection.Item プロパティ (String)
指定した識別子の Account をコレクションから取得します。
名前空間: Microsoft.AnalysisServices
アセンブリ: Microsoft.AnalysisServices (Microsoft.AnalysisServices.dll)
構文
'宣言
Public ReadOnly Default Property Item ( _
accountType As String _
) As Account
Get
'使用
Dim instance As AccountCollection
Dim accountType As String
Dim value As Account
value = instance(accountType)
public Account this[
string accountType
] { get; }
public:
property Account^ default[String^ accountType] {
Account^ get (String^ accountType);
}
member Item : Account
JScript はインデックス化されたプロパティの使用をサポートしていますが、新規の宣言はサポートしていません。
パラメーター
- accountType
型: System.String
取得する Account の識別子です。
プロパティ値
型: Microsoft.AnalysisServices.Account
識別子で指定した Account です。
例外
例外 | 条件 |
---|---|
ArgumentNullException | accountType に null 参照 (Visual Basic では Nothing) が設定されています。 |
ItemNotFoundException | accountType がコレクションに存在しません。 |