FMX.Types.Log.ArrayToString

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function ArrayToString(const AArray: TEnumerable<TFmxObject>; const MakeStr: TToStringFunc): string; overload;
class function ArrayToString(const AArray: TEnumerable<TFmxObject>): string; overload;

C++

__classmethod System::UnicodeString __fastcall ArrayToString(System::Generics::Collections::TEnumerable__1<TFmxObject*>* const AArray, const _di_TToStringFunc MakeStr)/* overload */;
__classmethod System::UnicodeString __fastcall ArrayToString(System::Generics::Collections::TEnumerable__1<TFmxObject*>* const AArray)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
FMX.Types.pas
FMX.Types.hpp
FMX.Types Log

Description

Returns the string equivalent of a FMX Object enumerable array.

For example, the following code will return a string array with the children of the Layout:

Delphi :

 ShowMessage(Log.ArrayToString(Layout1.Children));

C++ Builder :

 ShowMessage(Log::ArrayToString(Layout1->Children));

See Also