FMX.Presentation.Factory.TPresentationProxyFactory.Unregister

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

procedure Unregister(const APresentationName: string); overload;
procedure Unregister(const APresentationName: string; const APresentationProxyClass: TPresentationProxyClass); overload;
procedure Unregister(const AControlClass: TClass; const AControlType: TControlType); overload;
procedure Unregister(const AControlClass: TClass; const AControlType: TControlType;  const APresentationProxyClass: TPresentationProxyClass); overload;

C++

void __fastcall Unregister(const System::UnicodeString APresentationName)/* overload */;
void __fastcall Unregister(const System::UnicodeString APresentationName, const Fmx::Controls::Presentation::TPresentationProxyClass APresentationProxyClass)/* overload */;
void __fastcall Unregister(const System::TClass AControlClass, const Fmx::Controls::TControlType AControlType)/* overload */;
void __fastcall Unregister(const System::TClass AControlClass, const Fmx::Controls::TControlType AControlType, const Fmx::Controls::Presentation::TPresentationProxyClass APresentationProxyClass)/* overload */;

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
procedure
function
public
FMX.Presentation.Factory.pas
FMX.Presentation.Factory.hpp
FMX.Presentation.Factory TPresentationProxyFactory


Beschreibung

Hebt die Registrierung der angegebenen Darstellungs-Proxy-Klasse auf.

Mit den folgenden Parameterkombinationen können Sie eine Darstellungs-Proxy-Klasse angeben, deren Registrierung aufgehoben werden soll:

  • APresentationName: Für die Angabe des Namens der Darstellungs-Proxy-Klasse, deren Registrierung aufgehoben werden soll.
  • APresentationName und APresentationProxyClass: Für die Angabe des Namens der Darstellungs-Proxy-Klasse, deren Registrierung aufgehoben werden soll, und der Klasse selbst.
  • AControlClass und AControlType: Für die Angabe einer Kombination der Steuerelementklasse und des Steuerelementtyps anstatt des Darstellungs-Proxy-Namens.

Siehe auch