GetDisplayBitsPerPixel
(XAPI2000)
Deklaration
Function GetDisplayBitsPerPixel () As Integer
Beskrivning
Returnerar antal färgbitar per pixel som grafikortet är inställd
på (vanligtvis 16, 24 eller 32).
Returvärden
Funktionen returnerar antal färgbitar per pixel som grafikortet
är inställd på.
Se även
GetDisplayNumColors,
GetDisplayCharSize
|
Exempel (VB 6.0)
Label_Colors.Caption = CStr(GetDisplayNumColors())
' Skriv ut antal färger
Label_BPP.Caption = CStr(GetDisplayBitsPerPixel())
' Skriv ut antal färgbitar per pixels
Label_ChrSize.Caption = CStr(GetDisplayCharSize())
' Skriv ut teckenstorlek
|