AggregationDesignCollection.Insert メソッド

定義

オーバーロード

Insert(Int32, String, String)

指定した名前と識別子を使用して新しい AggregationDesign オブジェクトを作成し、それをコレクション内の指定したインデックスに挿入し、作成された新しい AggregationDesign を返します。

Insert(Int32, String)

指定した名前を使用して新しい AggregationDesign オブジェクトを作成し、それをコレクション内の指定したインデックスに挿入し、作成された新しい AggregationDesign を返します。

Insert(Int32, AggregationDesign)

指定した AggregationDesign をコレクション内の指定したインデックスに挿入します。

Insert(Int32)

生成された一意の名前と識別子を使用して新しい AggregationDesign オブジェクトを作成し、それをコレクション内の指定したインデックスに挿入し、作成された新しい AggregationDesign を返します。

Insert(Int32, String, String)

指定した名前と識別子を使用して新しい AggregationDesign オブジェクトを作成し、それをコレクション内の指定したインデックスに挿入し、作成された新しい AggregationDesign を返します。

public Microsoft.AnalysisServices.AggregationDesign Insert (int index, string name, string id);
override this.Insert : int * string * string -> Microsoft.AnalysisServices.AggregationDesign
Public Function Insert (index As Integer, name As String, id As String) As AggregationDesign

パラメーター

index
Int32

AggregationDesign の挿入先である、0 から始まるインデックスです。

name
String

新しい AggregationDesign オブジェクトの名前です。

id
String

新しい AggregationDesign オブジェクトの識別子です。

戻り値

新しく作成された AggregationDesign オブジェクトです。

例外

指定したインデックスが有効な値ではありません (0 未満または要素の合計数より大きい)。

  • コレクション内で指定した名前が有効ではありません。
  • 指定した識別子がコレクション内で無効です。

適用対象

Insert(Int32, String)

指定した名前を使用して新しい AggregationDesign オブジェクトを作成し、それをコレクション内の指定したインデックスに挿入し、作成された新しい AggregationDesign を返します。

public Microsoft.AnalysisServices.AggregationDesign Insert (int index, string name);
override this.Insert : int * string -> Microsoft.AnalysisServices.AggregationDesign
Public Function Insert (index As Integer, name As String) As AggregationDesign

パラメーター

index
Int32

AggregationDesign の挿入先である、0 から始まるインデックスです。

name
String

新しい AggregationDesign オブジェクトの名前です。 コレクション内で一意である必要があります。

戻り値

新しく作成された AggregationDesign オブジェクトです。

例外

指定したインデックスが有効な値ではありません (0 未満または要素の合計数より大きい)。

コレクション内で指定した名前が有効ではありません。

注釈

AggregationDesign 識別子は、指定された名前に基づいて生成されます。

適用対象

Insert(Int32, AggregationDesign)

指定した AggregationDesign をコレクション内の指定したインデックスに挿入します。

public void Insert (int index, Microsoft.AnalysisServices.AggregationDesign item);
override this.Insert : int * Microsoft.AnalysisServices.AggregationDesign -> unit
Public Sub Insert (index As Integer, item As AggregationDesign)

パラメーター

index
Int32

AggregationDesign の挿入先である、0 から始まるインデックスです。

item
AggregationDesign

挿入する AggregationDesign です。

例外

指定したインデックスが有効な値ではありません (0 未満または要素の合計数より大きい)。

  • 指定したアイテムは null 参照 (Visual Basic では Nothing) です。
  • 指定したアイテムはコレクション内に既に存在しています。
  • 指定した AggregationDesign の識別子がコレクション内で無効です。
  • 指定した AggregationDesign の名前がコレクション内で無効です。
  • 指定した AggregationDesign の互換性レベルは、コレクション内では無効です。

適用対象

Insert(Int32)

生成された一意の名前と識別子を使用して新しい AggregationDesign オブジェクトを作成し、それをコレクション内の指定したインデックスに挿入し、作成された新しい AggregationDesign を返します。

public Microsoft.AnalysisServices.AggregationDesign Insert (int index);
override this.Insert : int -> Microsoft.AnalysisServices.AggregationDesign
Public Function Insert (index As Integer) As AggregationDesign

パラメーター

index
Int32

AggregationDesign の挿入先である、0 から始まるインデックスです。

戻り値

新しく作成された AggregationDesign オブジェクトです。

例外

指定したインデックスが有効な値ではありません (0 未満または要素の合計数より大きい)。

適用対象