DesignerAutoFormatCollection.Remove(DesignerAutoFormat) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中移除指定的 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 从集合中删除的第一个匹配项 format
。
DesignerAutoFormatCollection如果 对象不包含 format
,则集合保持不变。 不会引发异常。
方法 Remove 通过在要比较的对象上使用 EqualsDesignerAutoFormat 方法确定相等性。
方法 Remove 执行线性搜索;因此,平均执行时间与 Count 值成正比。
若要从集合中删除特定索引处的格式,请使用 RemoveAt 方法。 若要从集合中删除所有格式,请使用 Clear 方法。
注意
从集合中删除项时,集合中后续项的索引值会更改。