dxShowMessagePos(string,Integer,Integer) Method
Invokes the message dialog box at the specified position on the screen.
Declaration
procedure dxShowMessagePos(const AMessage: string; X: Integer; Y: Integer);
Parameters
Name | Type | Description |
---|---|---|
AMessage | string | Message dialog box content. The The |
X | Integer | A horizontal offset (in pixels) of the upper-left form corner from the upper-left screen corner.
|
Y | Integer | A vertical offset (in pixels) of the upper-left form corner from the upper-left screen corner.
|
Remarks
Call the dxShowMessagePos
procedure to display an information message box without a system icon. The created message dialog box uses the application name as a caption.
Supported BBCode-Inspired Markup Tags
Text Formatting Attribute | Message Text with Tags | Example |
---|---|---|
Bold | '[B]DevExpress[/B]' |
|
Italic | '[I]DevExpress[/I]' |
|
Underscore | '[U]DevExpress[/U]' |
|
Strikeout | '[S]DevExpress[/S]' |
|
Subscript | 'Dev[Sub]Express[/Sub]' |
|
Superscript | 'Dev[Sup]Express[/Sup]' |
|
Custom Font | 'Dev[U][Font=Consolas][Size=12]Express[/U][/Font][/Size]' |
|
Color | '[Color=#E67E22]Dev[/Color][Color=Gray]Express[/Color]' |
|
Background Color | '[BackColor=Orange]DevExpress[/BackColor]' |
|
Hyperlink | '[URL=http://www.devexpress.com/]DevExpress[/URL]' |
|
No Parse | '[NOPARSE][B]DevExpress[/B][/NOPARSE]' |