VISIO::WINDOW (string title, int xsize, int ysize, int position)

Description: Creates a Visio window. The arguments have the following functions: the string sets the title in the window titlebar, then the xsize and the ysize in pixels of the window are defined, and finally the position of the window is defined. The position can be a value of V_POS_NONE (random), V_POS_CENTRE (centered), V_POS_MOUSE (at current mouse position) and V_POS_COORDS (at coordinates). The command returns the ID of the created window.

Example: window = VISIO::WINDOW ("Application", 300, 200, V_POS_CENTER)