wodTelnetDLX ActiveX Control - RecordMode Property
      
 

Description

Determines which record mode is used.


Property type

A RecordModesEnum enumeration.  


Syntax

object.RecordMode [= value]



The RecordMode Property syntax has these parts:

Part Description
object An expression evaluating to an object of type wodTelnetDLX.
value A RecordModesEnum enumeration, as described in settings.

Settings

The settings for value are:

Constant Value Description
 RecordOnlyReceived 1 Record received data.
 RecordOnlySent 2 Record sent data.
 RecordAll 3 Record received and sent data.

Remarks

This property is only available in OCX (GUI) version of the component.

RecordMode Property allows you to select type of record mode you want to use for recording current session.

If you want to record all data that is sent and received, you should set this property to RecordAll. Other options are to record only received data using RecordOnlyReceived and record sent data using RecordOnlySent.

In order to start recording data, first you need to use Record method.