Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide to Clip-4-Win version 3.0 - Norton Guide http://www.X-Hacker.org [^^Up^^] [Menu] [About The Guide]
 WStatusBar             Status (message) bar class
 ----------------------------------------------------------------------------
 WStatusBar
 Status (message) bar class
 ----------------------------------------------------------------------------
 
 Properties
 ClassStyle     The window's class style (a combination of CS_* values)
 Height         The height of the window, in pixels.
 Messages       An array of the messages (WM_*) handled by the window
 Text           The window's status message
 Visible        A logical controlling whether the window is visible
 WndProc        A code block to handle messages (WM_*) for the window
 WndStyle       The control's usual style (a combination of WS_* values)
 
 Methods
 WStatusBar:AddWindow()   For internal use.
 WStatusBar:DelWindow()   For internal use.
 WStatusBar:Init()        Construct a status bar object
 WStatusBar:Move()        Re-position and/or change size of the status bar's window
 WStatusBar:OnSetFocus()  Input focus gained message
 
 Inherits From
 WWindow
 
 Inherited By
 Nothing.
 
 Description
 This class is used for status bar windows.  An application can
 have zero, one, or more status bars.  A frame window handles a
 status bar automatically.
 
 Example
 // From SOURCE\OO\DBFGEN.PRG:
 CLASS MyApp INHERIT WApp
      METHOD Create(cText)     INLINE ::oWnd := MainWindow{self, cText}
 ENDCLASS
 
 CLASS MainWindow INHERIT WSDIWindow
 // . . .
      METHOD Init(oApp, cText)                         ;
             INLINE super:Init(oApp, cText),           ;
                    ::StatusBar := WStatusBar{self},   ;
                    self
 
 See Also  (press Enter)

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson