DisplayUserComment

ITcEventView

This property enables or disables the column that displays the UserComment or returns the state.

 

Property get

HRESULT get_DisplayUserComment([out, retval] VARIANT_BOOL*pVal);

Parameters

pVal

[out, retval] pointer to VARIANT_BOOL variable that receives the visible state of the list view column 'user comment'. 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 set

HRESULT put_DisplayUserComment([in] VARIANT_BOOL newVal);

Parameters

newVal

[in] A variable that sets the visible state of the list view column 'user comment'. 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.DisplayUserComment = True
End Sub