DesignerActionService.Remove Metoda

Definice

Oddružuje jeden nebo více seznamů inteligentních značek z jedné nebo více součástí.

Přetížení

Name Description
Remove(DesignerActionList)

Odebere zadaný seznam inteligentních značek ze všech komponent spravovaných aktuální službou.

Remove(IComponent)

Odebere všechny seznamy inteligentních značek přidružené k zadané komponentě.

Remove(IComponent, DesignerActionList)

Odebere zadaný seznam inteligentních značek ze zadané komponenty.

Remove(DesignerActionList)

Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs

Odebere zadaný seznam inteligentních značek ze všech komponent spravovaných aktuální službou.

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)

Parametry

actionList
DesignerActionList

Seznam inteligentních značek, které se mají odebrat.

Výjimky

actionList je null.

Poznámky

Tato verze Remove metody je obvykle používána vývojáři nástrojů návrhu, protože vývojáři komponent obvykle neví, jaké další komponenty existují v aktuálním návrhovém prostoru.

Pokud je tato metoda DesignerActionListsChanged úspěšná, vyvolá událost.

Viz také

Platí pro

Remove(IComponent)

Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs

Odebere všechny seznamy inteligentních značek přidružené k zadané komponentě.

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)

Parametry

comp
IComponent

Komponenta pro zrušení přidružení inteligentních značek.

Výjimky

comp je null.

Poznámky

V případě úspěchu Remove metoda vyvolá DesignerActionListsChanged událost.

Viz také

Platí pro

Remove(IComponent, DesignerActionList)

Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs
Zdroj:
DesignerActionService.cs

Odebere zadaný seznam inteligentních značek ze zadané komponenty.

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)

Parametry

comp
IComponent

Komponenta pro zrušení přidružení inteligentních značek.

actionList
DesignerActionList

Seznam inteligentních značek, který chcete odebrat.

Výjimky

Jeden nebo oba parametry jsou null.

Poznámky

V případě úspěchu Remove metoda vyvolá DesignerActionListsChanged událost.

Viz také

Platí pro