DesignerActionService.Remove 方法

定义

从一个或多个组件断开与一个或多个智能标记列表的关联。

重载

Remove(DesignerActionList)

从由当前服务管理的所有组件中移除指定的智能标记列表。

Remove(IComponent)

移除与指定组件关联的所有智能标记列表。

Remove(IComponent, DesignerActionList)

从指定的组件移除指定的智能标记列表。

Remove(DesignerActionList)

从由当前服务管理的所有组件中移除指定的智能标记列表。

public:
 void Remove(System::ComponentModel::Design::DesignerActionList ^ actionList);
public void Remove (System.ComponentModel.Design.DesignerActionList actionList);
member this.Remove : System.ComponentModel.Design.DesignerActionList -> unit
Public Sub Remove (actionList As DesignerActionList)

参数

actionList
DesignerActionList

要移除的智能标记列表。

例外

actionListnull

注解

此版本的 Remove 方法通常由设计工具开发人员使用,因为组件开发人员通常不知道当前设计空间中存在哪些其他组件。

如果成功,此方法将 DesignerActionListsChanged 引发 事件。

另请参阅

适用于

Remove(IComponent)

移除与指定组件关联的所有智能标记列表。

public:
 void Remove(System::ComponentModel::IComponent ^ comp);
public void Remove (System.ComponentModel.IComponent comp);
member this.Remove : System.ComponentModel.IComponent -> unit
Public Sub Remove (comp As IComponent)

参数

comp
IComponent

要与智能标记断开关联的组件。

例外

compnull

注解

如果成功,该方法 RemoveDesignerActionListsChanged 引发 事件。

另请参阅

适用于

Remove(IComponent, DesignerActionList)

从指定的组件移除指定的智能标记列表。

public:
 void Remove(System::ComponentModel::IComponent ^ comp, System::ComponentModel::Design::DesignerActionList ^ actionList);
public void Remove (System.ComponentModel.IComponent comp, System.ComponentModel.Design.DesignerActionList actionList);
member this.Remove : System.ComponentModel.IComponent * System.ComponentModel.Design.DesignerActionList -> unit
Public Sub Remove (comp As IComponent, actionList As DesignerActionList)

参数

comp
IComponent

要与智能标记断开关联的组件。

actionList
DesignerActionList

要移除的智能标记列表。

例外

两个参数之一或两个参数均为 null

注解

如果成功,该方法 RemoveDesignerActionListsChanged 引发 事件。

另请参阅

适用于