nca_win_move

Window Object Functions

Moves a window to a new absolute location.

int nca_win_move( LPCSTR window, int x, int y );
window The logical name of the window.
x, y The screen coordinates of the pixel to which the window's upper left corner is moved. The screen origin is the upper left corner. When the window is an MDI child window, the coordinates are relative to the parent window, not the screen. The maximum value of x is the screen width in pixels, minus one. The maximum value of y is the screen height in pixels, minus one.

nca_win_move moves a window to a new absolute location.

Return Values

Oracle NCA Error Codes

Parameterization

You cannot use standard parameterization for any arguments in this function.

Example

In the following example, the nca_win_move function moves the window to the position 10, 10.

    nca_set_window("Navigator - Alert Manager, Vision Enterprises");
    nca_win_move ("Navigator - Alert Manager, Vision Enterprises", 10, 10);
    nca_win_close("N");