FMX.Types3D.TPosition3D.ReadPoint
Delphi
procedure ReadPoint(Reader: TReader);
C++
void __fastcall ReadPoint(System::Classes::TReader* Reader);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
protected | FMX.Types3D.pas FMX.Types3D.hpp |
FMX.Types3D | TPosition3D |
Description
Reads the Point property from a TReader object.
ReadPoint reads a string from Reader
, tries to convert the string into a TPoint3D, and stores the result into Point.
The accepted string format is: (X,Y,Z)
, where X
, Y
, and Z
are numeric values.
Note: If the conversion from string to TPoint3D fails, the result is a TPoint3D having X, Y, and Z set to 0.