FMX.Presentation.Factory.TPresentationProxyFactory.Unregister

From RAD Studio API Documentation
Jump to: navigation, search

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 */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Presentation.Factory.pas
FMX.Presentation.Factory.hpp
FMX.Presentation.Factory TPresentationProxyFactory

Description

Unregisters the specified presentation proxy class.

To specify a presentation proxy class to unregister, you may use any of the following combinations of parameters:

  • APresentationName, to specify the name of the presentation proxy class to unregister.
  • APresentationName and APresentationProxyClass, to specify the name of the presentation proxy class to unregister and the class itself.
  • AControlClass and AControlType, to specify a combination of control class and control type instead of a presentation proxy name.

See Also