| **Navigation:**  [[advanced topics 1.htm|Advanced Topics]] > Clarion Language Utilities >====== FullDrag (Query/Change Window Drag Setting) ====== | [[filetoblob copy data from a file to a blob field .htm|{{btn_prev_n.gif|Previous page}}]][[advanced topics 1.htm|{{btn_home_n.gif|Return to chapter overview}}]][[getfiledate get the file date .htm|{{btn_next_n.gif|Next page}}]] | | || **FULLDRAG( **<; //setdragflag //> **)** {{blk2blue.jpg|blk2blue.jpg}} | **FULLDRAG** | Query and/or change the full window drag settings | | //setdragflag// | A BYTE variable or constant. TRUE (1) or FALSE (0) | **FULLDRAG** returns the current window drag setting. If the optional //setdragflag// is set to TRUE (1), full window dragging is enabled. If the optional //setdragflag// is set to FALSE (0), full window dragging is disabled and only the window frame will appear when dragging a window. To add support for this utility to your existing applications, you need only include the CWUTIL.INC file in the Global Map section of your program: **INCLUDE('CWUTIL.INC'),ONCE** **Return Data Type:     **LONG **Example:** **IF NOT FULLDRAG()              !If full window dragging is OFF** **  FULLDRAG(1)                  !Enable it ** **END**