System.Bindings.Outputs.TValueRefConverterFactory.UnRegisterConversion

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class procedure UnRegisterConversion(const ConverterID: string); overload;
class procedure UnRegisterConversion(AFrom: PTypeInfo; ATo: PTypeInfo); overload;
class procedure UnRegisterConversion(AFrom: Array of PTypeInfo; ATo: Array of PTypeInfo); overload;
class procedure UnRegisterConversion(AFrom: TArray<PTypeInfo>; ATo: TArray<PTypeInfo>); overload;

C++

__classmethod void __fastcall UnRegisterConversion(const System::UnicodeString ConverterID)/* overload */;
__classmethod void __fastcall UnRegisterConversion(System::Typinfo::PTypeInfo AFrom, System::Typinfo::PTypeInfo ATo)/* overload */;
__classmethod void __fastcall UnRegisterConversion(System::Typinfo::PTypeInfo *AFrom, const int AFrom_High, System::Typinfo::PTypeInfo *ATo, const int ATo_High)/* overload */;
__classmethod void __fastcall UnRegisterConversion(System::DynamicArray<System::Typinfo::PTypeInfo> AFrom, System::DynamicArray<System::Typinfo::PTypeInfo> ATo)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Bindings.Outputs.pas
System.Bindings.Outputs.hpp
System.Bindings.Outputs TValueRefConverterFactory

Description

Unregisters a conversion from the factory.

The UnRegisterConversion method is used to unregister a conversion from the factory. There are three UnRegisterConversion overloaded methods.

Call the first UnRegisterConversion overloaded method with the following parameter:

Parameter Meaning
ConverterID An ID used to filter which conversion is available in the returned converter.

Call the second UnRegisterConversion overloaded method with the following parameters:

Parameter Meaning
AFrom From PTypeInfo for the current conversion routine
MetaClass To PTypeInfo for the current conversion routine

Call the third UnRegisterConversion overloaded method with the following parameters:

Parameter Meaning
AFrom Array of From PTypeInfo for the current conversion routine
MetaClass Array of To PTypeInfo for the current conversion routine

See Also