IupShowXY

Displays a dialog in a given position on the screen.

Parameters/Return

int IupShowXY(Ihandle *element, int x, int y); [in C]
IupShowXY(element: ihandle, x, y: number) -> (ret: number) [in IupLua3]
iup.ShowXY(element: ihandle, x, y: number) -> (ret: number) [in IupLua5]
or element:showxy(x, y: number) -> (ret: number) [in IupLua]

element: identifier of the dialog.
x: x coordinate of the dialog’s left corner. The following macros are valid:

y: y coordinate of the dialog’s upper part. The following macros are valid:

This function returns IUP_NOERROR if the element was displayed.

Note

This function can be executed more than once for the same dialog. This will make the dialog be placed above all other dialogs in the application.

See Also

IupShow, IupHide, IupPopup.