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