ConstraintCollection.RemoveAt メソッド
指定したインデックス位置にある Constraint オブジェクトをコレクションから削除します。
Public Sub RemoveAt( _
ByVal index As Integer _)
[C#]
public void RemoveAt(intindex);
[C++]
public: void RemoveAt(intindex);
[JScript]
public function RemoveAt(
index : int);
パラメータ
- index
削除する Constraint のインデックス。
例外
例外の種類 | 条件 |
---|---|
IndexOutOfRangeException | このコレクションにはこのインデックス位置に制約がありません。 |
解説
IndexOf メソッドは、指定した Constraint のインデックスを返します。
RemoveAt メソッドを使用する前に、 Contains メソッドを使用して、ターゲットの Constraint がコレクション内に存在するかどうかを確認し、 CanRemove メソッドを使用して、 Constraint を削除できるかどうかを確認できます。
制約が正常に削除された場合は、 CollectionChanged イベントが発生します。
使用例
[Visual Basic, C#, C++] IndexOf メソッドを RemoveAt メソッドと共に使用して、 ConstraintCollection から制約を削除する例を次に示します。
Private Sub RemoveConstraint _
(myConstraints As ConstraintCollection, myConstraint As Constraint)
Try
If myConstraints.Contains(myConstraint.ConstraintName) Then
If myConstraints.CanRemove(myConstraint) Then
myConstraints.RemoveAt _
(myConstraints.IndexOf(myConstraint.ConstraintName))
End If
End If
Catch e As Exception
' Process exception and return.
Dim log As System.Diagnostics.EventLog = New System.Diagnostics.EventLog()
log.Source = "My Application"
log.WriteEntry(e.ToString())
Console.WriteLine("Exception of type {0} occurred.", e.GetType().ToString())
End Try
End Sub
[C#]
private void RemoveConstraint(ConstraintCollection myConstraints, Constraint myConstraint){
try{
if(myConstraints.Contains(myConstraint.ConstraintName)) {
if(myConstraints.CanRemove(myConstraint)) {
myConstraints.RemoveAt(myConstraints.IndexOf(myConstraint.ConstraintName));
}
}
}
catch(Exception e) {
// Process exception and return.
System.Diagnostics.EventLog log = new System.Diagnostics.EventLog();
log.Source = "My Application";
log.WriteEntry(e.ToString());
Console.WriteLine("Exception of type {0} occurred.", e.GetType());
}
}
[C++]
private:
void RemoveConstraint(ConstraintCollection* myConstraints, Constraint* myConstraint){
try{
if(myConstraints->Contains(myConstraint->ConstraintName)) {
if(myConstraints->CanRemove(myConstraint)) {
myConstraints->RemoveAt(myConstraints->IndexOf(myConstraint->ConstraintName));
}
}
}
catch(Exception* e) {
// Process exception and return.
System::Diagnostics::EventLog* log = new System::Diagnostics::EventLog();
log->Source = S"My Application";
log->WriteEntry(e->ToString());
Console::WriteLine(S"Exception of type {0} occurred.", e->GetType());
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
ConstraintCollection クラス | ConstraintCollection メンバ | System.Data 名前空間 | CanRemove | Contains | IndexOf