MeasureGroupAttributeCollection.Insert メソッド (Int32, String)
新しい MeasureGroupAttribute を作成し、指定したインデックスに挿入して、返します。
名前空間: Microsoft.AnalysisServices
アセンブリ: Microsoft.AnalysisServices (Microsoft.AnalysisServices.dll)
構文
'宣言
Public Function Insert ( _
index As Integer, _
attributeId As String _
) As MeasureGroupAttribute
'使用
Dim instance As MeasureGroupAttributeCollection
Dim index As Integer
Dim attributeId As String
Dim returnValue As MeasureGroupAttribute
returnValue = instance.Insert(index, attributeId)
public MeasureGroupAttribute Insert(
int index,
string attributeId
)
public:
MeasureGroupAttribute^ Insert(
int index,
String^ attributeId
)
member Insert :
index:int *
attributeId:string -> MeasureGroupAttribute
public function Insert(
index : int,
attributeId : String
) : MeasureGroupAttribute
パラメーター
- index
型: System.Int32
新しい MeasureGroupAttribute の挿入先である、0 から始まるインデックスです。
- attributeId
型: System.String
新しい MeasureGroupAttribute の属性識別子です (コレクション内で一意である必要があります)。
戻り値
型: Microsoft.AnalysisServices.MeasureGroupAttribute
新しく作成された MeasureGroupAttribute です。
例外
例外 | 条件 |
---|---|
ArgumentOutOfRangeException | index に 0 より小さい値が指定されています。 - または - index に Count 以上の値が指定されています。 |