Information about the Library:
BT_InfoName ()
Return a string with the name of the library: "Bos Taurus"
Syntax:
MsgInfo( BT_InfoName () )
BT_InfoVersion ()
Return a string with the current version of the library, for example: "1.0.0"
Syntax:
MsgInfo( BT_InfoVersion() )
BT_InfoAuthor ()
Return a string with the name of the author: "© Dr. Claudio Soto (from Uruguay)"
Syntax:
MsgInfo( BT_InfoAuthor() )
Information about the Environment:
BT_GetDesktopHandle ()
Return a handle to the desktop (hWin). The desktop window covers the entire screen.
Syntax:
hWin := BT_GetDesktopHandle ()
BT_DesktopWidth ()
Return the width of the screen in pixels.
Syntax:
nWidth := BT_DesktopWidth ()
BT_DesktopHeight ()
Return the height of the screen in pixels.
Syntax:
nHeight := BT_DesktopHeight()
BT_WindowWidth (Win)
Return the width of the specified window in pixels.
Win: is the name (e.g. "Win1") or is the handle (e.g. hWin) of the window.
Syntax:
nWidth := BT_WindowWidth( 'form1' )
nWidth := BT_WindowWidth( hWin )
BT_WindowHeight **(Win)**
Return the height of the specified window in pixels.
Win: is the name (e.g. "Win1") or is the handle (e.g. hWin) of the window.
BT_ClientAreaWidth(Win)
Return the width of the client area of the specified window in pixels. The client area includes the area of the Status Bar.
Win: is the name (e.g. "Win1") or is the handle (e.g. hWin) of the window.
BT_ClientAreaHeight (Win)
Return the height of the client area of the specified window in pixels. The client area includes the area of the Status Bar.
Win: is the name (e.g. "Win1") or is the handle (e.g. hWin) of the window.
BT_StatusBarWidth(cFormName)
Return the width of the Status Bar of the specified window in pixels. If not defined (not exist) the Status Bar, returns zero.
cFormName: is the name of the window(e.g. "Win1").
BT_StatusBarHeight (cFormName)
Return the height of the Status Bar of the specified window in pixels. If not defined (not exist) the Status Bar, returns zero.
cFormName: is the name of the window(e.g. "Win1").