BackgroundColor

ITcEventView

Diese Eigenschaft stellt die Hintergrundfarbe des TcEventViewers ein.

Property get

HRESULT get_BackgroundColor([out, retval] OLE_COLOR* pVal);

Parameters

pVal

[out, retval] Pointer auf eine Variable, die den aktuellen Status erhält.

Rückgabe Werte

S_OK

Funktion wurde erfolgreich aufgerufen.

E_POINTER

pVal war kein gültiger Pointer.

Property set

HRESULT put_BackgroundColor([in] OLE_COLOR newVal);

Parameters

newVal

[in] Eine Variable, die den neuen Status enthält.

Rückgabe Werte

S_OK

Funktion wurde erfolgreich aufgerufen.

Visual Basic Beispielcode

Option Explicit

' add the Beckhoff TcEvent View Library to the components
' place a TcEventView on the form, and assign the name TcEventView1

Private Sub Form_Load()
  ' display alarms with red text color
  TcEventView1.BackgroundColor = RGB(255, 0, 0)
End Sub