FMX.Dialogs.ShowMessagePos

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ShowMessagePos(const AMessage: string; const AX, AY: Integer);

C++

extern DELPHI_PACKAGE void __fastcall ShowMessagePos _DEPRECATED_ATTRIBUTE1("Use FMX.DialogService methods") (const System::UnicodeString AMessage, const int AX, const int AY);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Dialogs.pas
FMX.Dialogs.hpp
FMX.Dialogs FMX.Dialogs

Description

Attention: ShowMessagePos is deprecated. Please use IFMXDialogServiceAsync.ShowMessageDialogAsync or IFMXDialogServiceSync.ShowMessageSync from the FMX.Platform unit.

Displays a simple message box at a specified position.

Use ShowMessagePos to display a simple message box that contains a text message, specified by Msg, and an OK button.

X and Y are currently ignored.

See Also