Insert メソッド (Int32, String, String)
指定した名前および識別子の MiningStructure を作成し、コレクション内の指定したインデックスに挿入します。
名前空間: Microsoft.AnalysisServices
アセンブリ: Microsoft.AnalysisServices (Microsoft.AnalysisServices.dll)
構文
'宣言
Public Function Insert ( _
index As Integer, _
name As String, _
id As String _
) As MiningStructure
'使用
Dim instance As MiningStructureCollection
Dim index As Integer
Dim name As String
Dim id As String
Dim returnValue As MiningStructure
returnValue = instance.Insert(index, name, _
id)
public MiningStructure Insert(
int index,
string name,
string id
)
public:
MiningStructure^ Insert(
int index,
String^ name,
String^ id
)
member Insert :
index:int *
name:string *
id:string -> MiningStructure
public function Insert(
index : int,
name : String,
id : String
) : MiningStructure
パラメーター
- index
型: System. . :: . .Int32
新しい MiningStructure を挿入する位置を示す 0 から始まるインデックスです。
- name
型: System. . :: . .String
挿入する MiningStructure の名前です。
- id
型: System. . :: . .String
挿入する MiningStructure の識別子です。
戻り値
型: Microsoft.AnalysisServices. . :: . .MiningStructure
新しい、空の MiningStructure です。
例外
例外 | 条件 |
---|---|
ArgumentOutOfRangeException | index is less than zero. -or- index is equal to or greater than [H:Microsoft.AnalysisServices.ModelComponentCollection.Count]. |