ColWidthMustCon
This property sets or returns the width of the list view columns confirmation state.
Property get
HRESULT get_ColWidthMustCon([out, retval] long* pVal);
Parameters
pVal
[out, retval] pointer to variable that receives width of the list view columns confirmation state
Return Values
S_OK Function was successfully called |
E_POINTER
pVal was no valid pointer
|
Property let
HRESULT set_ColWidthMustCon([in] long newVal);
Parameters
newVal
[in] A variable that sets the width of the list view column confirmation state
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.ColWidthMustCon = 200
End Sub