FMX.MediaLibrary.TWriteImageCompletionEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TWriteImageCompletionEvent = procedure (const ASaved: Boolean; const AResultMessage: string) of object;

C++

typedef void __fastcall (__closure *TWriteImageCompletionEvent)(const bool ASaved, const System::UnicodeString AResultMessage);

Properties

Type Visibility Source Unit Parent
type
typedef
public
FMX.MediaLibrary.pas
FMX.MediaLibrary.hpp
FMX.MediaLibrary FMX.MediaLibrary

Description

The type of event that the AddImageToSavedPhotosAlbum uses for the callback method.

The parameters that this method accepts are:

  • ASaved: Specifies whether the operation is successful (the image is saved).
  • AResultMessage: An arbitrary message text. May also contain an error message if one occurs.

See Also