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