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