FZ_PanDAForm.SetLcdBacklight
Controls the LCD backlight
Public Shared Function SetLcdBacklight( _
ByVal state As Integer _
) As Integer
Parameters
kind
|
LCD backlight state to be set
0: Backlight OFF
1: Backlight ON
|
Input
|
Return Value
Returns 0 when setting the LCD backlight state succeeded.
Otherwise returns a non-zero value.
Description
Sets the LCD backlight to the specified state.
Example
Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
' Turns off the LCD backlight
SetLcdBacklight(0)
End Sub