| [Overview][Constants][Types][Procedures and functions][Variables][Index] | 
Get current driver capabilities.
Source position: videoh.inc line 130
function GetCapabilities: Word;  | 
GetCapabilities returns the capabilities of the current driver. It is an or-ed combination of the following constants:
Note that the video driver should not yet be initialized to use this function. It is a property of the driver.
None.
  | 
Get screen cursor type  | 
|
  | 
Get a copy of the current video driver.  | 
Program Example4; { Program to demonstrate the GetCapabilities function. } Uses video; Var W: Word; Procedure TestCap(Cap: Word; Msg : String); begin Write(Msg,' : '); If (W and Cap=Cap) then Writeln('Yes') else Writeln('No'); end; begin W:=GetCapabilities; Writeln('Video driver supports following functionality'); TestCap(cpUnderLine,'Underlined characters'); TestCap(cpBlink,'Blinking characters'); TestCap(cpColor,'Color characters'); TestCap(cpChangeFont,'Changing font'); TestCap(cpChangeMode,'Changing video mode'); TestCap(cpChangeCursor,'Changing cursor shape'); end.