共用方式為


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 專案插入組態檔的適當區段,以供較高層級組態檔中定義的任何專案使用。 如果專案是在目前組態檔的適當區段中定義,則會從組態檔中移除其專案。 要移除的物件必須存在於集合中。

適用於

另請參閱