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