FMX.Gestures.GestureToIdent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GestureToIdent(ID: Integer; var Ident: string): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall GestureToIdent(int ID, System::UnicodeString &Ident);

Properties

Type Visibility Source Unit Parent
function public
FMX.Gestures.pas
FMX.Gestures.hpp
FMX.Gestures FMX.Gestures

Description

Converts a gesture ID to the corresponding string.

GestureToIdent provides the underlying translation from gesture IDs to string identifiers. ID is the gesture ID to translate. Ident is the string identifier that will be obtained. The function returns a boolean value indicating whether the translation completed successfully.

GestureToIdent is used mostly internally to support proper VCL streaming.

Note: GestureToIdent provides mapping only for standard gestures.

See Also

Code Examples