次の方法で共有


ProfilePropertySettingsCollection.RemoveAt(Int32) メソッド

定義

指定したインデックス位置にある ProfilePropertySettings オブジェクトをコレクションから削除します。

public:
 void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

パラメーター

index
Int32

ProfilePropertySettings オブジェクトの、コレクション内でのインデックス。

例外

コレクション内の指定したインデックス位置に ProfilePropertySettings オブジェクトがありません。

- または -

要素は既に削除されています。

- または -

コレクションは読み取り専用です。

RemoveAt メソッドを使用するコード例を次に示します。 このコード例は、ProfileSection クラスのために提供されている大規模な例の一部です。

// Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage");
newPropGroup.PropertySettings.RemoveAt(0);
' Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage")
newPropGroup.PropertySettings.RemoveAt(0)

注釈

このメソッドは、 remove 上位レベルの構成ファイルで定義されている要素に対して、構成ファイルの適切なセクションに要素を挿入します。 要素が現在の構成ファイルの適切なセクションで定義されている場合、そのエントリは構成ファイルから削除されます。 削除するオブジェクトは、コレクション内に存在する必要があります。

適用対象

こちらもご覧ください