System.Tether.AppProfile.TResourceValue.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(Value: Boolean); overload;
constructor Create(Value: Int64); overload;
constructor Create(Value: Integer); overload;
constructor Create(Value: Double); overload;
constructor Create(Value: Single); overload;
constructor Create(const Value: string); overload;
constructor Create(const Value: TStream); overload;

C++

__fastcall TResourceValue(bool Value)/* overload */;
__fastcall TResourceValue(__int64 Value)/* overload */;
__fastcall TResourceValue(int Value)/* overload */;
__fastcall TResourceValue(double Value)/* overload */;
__fastcall TResourceValue(float Value)/* overload */;
__fastcall TResourceValue(const System::UnicodeString Value)/* overload */;
__fastcall TResourceValue(System::Classes::TStream* const Value)/* overload */;
TResourceValue() {}

Properties

Type Visibility Source Unit Parent
constructor public
System.Tether.AppProfile.pas
System.Tether.AppProfile.hpp
System.Tether.AppProfile TResourceValue

Description

Constructors that create an instance of TResourceValue from different types of data.

C++ needs these constructors to allow the use of properties that return a TResourceValue on the left side of an assignment.

See Also