DisplayTime
This property enables or disables the column that displays the Event Time or returns the state.
Property get
HRESULT get_DisplayTime([out, retval] VARIANT_BOOL*pVal);
Parameters
pVal
[out, retval] pointer to VARIANT_BOOL variable that receives the visible state of the list view Event Time. It's visible if the variable is VARINAT_TRUE (TRUE) and invisible if the variable is VARIANT_FALSE (FALSE).
Return Values
S_OK Function was successfully called E_POINTER pVal was no valid pointer
|
Property let
HRESULT put_DisplayTime([in] VARIANT_BOOL newVal);
Parameters
newVal
[in] A variable that set the visible state of the list view column Event Time. It's visible if the variable is VARINAT_TRUE (TRUE) and invisible if the variable is VARIANT_FALSE (FALSE).
Return Values
S_OK
Function was successfully called
Visual Basic sample code
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()
TcEventView1.DisplayTime = True
End Sub