AccountCollection.Insert メソッド (Int32, String)
指定した識別子の Account を作成し、コレクション内の指定したインデックスに挿入します。
名前空間: Microsoft.AnalysisServices
アセンブリ: Microsoft.AnalysisServices (Microsoft.AnalysisServices.dll)
構文
'宣言
Public Function Insert ( _
index As Integer, _
accountType As String _
) As Account
'使用
Dim instance As AccountCollection
Dim index As Integer
Dim accountType As String
Dim returnValue As Account
returnValue = instance.Insert(index, accountType)
public Account Insert(
int index,
string accountType
)
public:
Account^ Insert(
int index,
String^ accountType
)
member Insert :
index:int *
accountType:string -> Account
public function Insert(
index : int,
accountType : String
) : Account
パラメーター
- index
型: System.Int32
新しい Account の挿入先である、0 から始まるインデックスです。
- accountType
型: System.String
挿入する Account の識別子です。
戻り値
型: Microsoft.AnalysisServices.Account
新しい、空の Account です。
例外
例外 | 条件 |
---|---|
ArgumentOutOfRangeException | index に 0 より小さい値が指定されています。 -または- index に [H:Microsoft.AnalysisServices.ModelComponentCollection.Count] 以上の値が指定されています。 |