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