DesignerAutoFormatCollection.Remove(DesignerAutoFormat) 方法

定义

从集合中移除指定的 DesignerAutoFormat 对象。

public:
 void Remove(System::Web::UI::Design::DesignerAutoFormat ^ format);
public void Remove (System.Web.UI.Design.DesignerAutoFormat format);
member this.Remove : System.Web.UI.Design.DesignerAutoFormat -> unit
Public Sub Remove (format As DesignerAutoFormat)

参数

format
DesignerAutoFormat

要从该集合中移除的 DesignerAutoFormat

注解

方法 Remove 从集合中删除的第一个匹配项 formatDesignerAutoFormatCollection如果 对象不包含 format,则集合保持不变。 不会引发异常。

方法 Remove 通过在要比较的对象上使用 EqualsDesignerAutoFormat 方法确定相等性。

方法 Remove 执行线性搜索;因此,平均执行时间与 Count 值成正比。

若要从集合中删除特定索引处的格式,请使用 RemoveAt 方法。 若要从集合中删除所有格式,请使用 Clear 方法。

注意

从集合中删除项时,集合中后续项的索引值会更改。

适用于

另请参阅