DesignerActionService.Remove Método
Definición
Desasocia una o varias listas de etiquetas inteligentes de uno o varios componentes.Disassociates one or more smart tag lists from one or more components.
Sobrecargas
Remove(DesignerActionList) |
Quita la lista de etiquetas inteligentes especificada de todos los componentes administrados mediante el servicio actual.Removes the specified smart tag list from all components managed by the current service. |
Remove(IComponent) |
Quita todas las listas de etiquetas inteligentes asociadas al componente especificado.Removes all the smart tag lists associated with the specified component. |
Remove(IComponent, DesignerActionList) |
Quita la lista de etiquetas inteligentes especificada del componente determinado.Removes the specified smart tag list from the specified component. |
Remove(DesignerActionList)
Quita la lista de etiquetas inteligentes especificada de todos los componentes administrados mediante el servicio actual.Removes the specified smart tag list from all components managed by the current service.
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)
Parámetros
- actionList
- DesignerActionList
Lista de etiquetas inteligentes que se va a quitar.The list of smart tags to be removed.
Excepciones
actionList
es null
.actionList
is null
.
Comentarios
Esta versión del Remove método la usan normalmente los desarrolladores de herramientas de diseño, ya que los desarrolladores de componentes normalmente no saben qué otros componentes existen en el espacio de diseño actual.This version of the Remove method is typically used by design tool developers, because component developers typically do not know what other components exist in the current design space.
Si es correcto, este método genera el DesignerActionListsChanged evento.If successful, this method raises the DesignerActionListsChanged event.
Consulte también
- Add
- HideUI(IComponent)
- Clear()
- Comandos del diseñador y modelo de objetos de DesignerAction para formularios Windows FormsDesigner Commands and the DesignerAction Object Model for Windows Forms
Se aplica a
Remove(IComponent)
Quita todas las listas de etiquetas inteligentes asociadas al componente especificado.Removes all the smart tag lists associated with the specified component.
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)
Parámetros
- comp
- IComponent
Componente del que se van a desasociar las etiquetas inteligentes.The component to disassociate the smart tags from.
Excepciones
comp
es null
.comp
is null
.
Comentarios
Si se realiza correctamente, el Remove método genera el DesignerActionListsChanged evento.If successful, the Remove method raises the DesignerActionListsChanged event.
Consulte también
- Add
- HideUI(IComponent)
- Clear()
- Comandos del diseñador y modelo de objetos de DesignerAction para formularios Windows FormsDesigner Commands and the DesignerAction Object Model for Windows Forms
Se aplica a
Remove(IComponent, DesignerActionList)
Quita la lista de etiquetas inteligentes especificada del componente determinado.Removes the specified smart tag list from the specified component.
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)
Parámetros
- comp
- IComponent
Componente del que se van a desasociar las etiquetas inteligentes.The component to disassociate the smart tags from.
- actionList
- DesignerActionList
Lista de etiquetas inteligentes que se va a quitar.The smart tag list to remove.
Excepciones
Uno o ambos parámetros son null
.One or both of the parameters are null
.
Comentarios
Si se realiza correctamente, el Remove método genera el DesignerActionListsChanged evento.If successful, the Remove method raises the DesignerActionListsChanged event.
Consulte también
- Add
- HideUI(IComponent)
- Clear()
- Comandos del diseñador y modelo de objetos de DesignerAction para formularios Windows FormsDesigner Commands and the DesignerAction Object Model for Windows Forms