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