Turns the data capture facility on or off.


Namespace: ScreenUPG
Assembly: ScreenUPG (in ScreenUPG.dll)

Syntax

Visual Basic (Declaration)
Public Sub setDataCapture( _ 
   ByVal sDCVal As Boolean _ 
)
C#
public void setDataCapture(
   bool sDCVal
)
C++
public:
 void setDataCapture(
   bool sDCVal
) sealed 
J#
public void setDataCapture(
   bool sDCVal
)
JScript
public  function setDataCapture(
   sDCVal : bool
)

Parameters

sDCVal
Specifies whether to turn the data capture facility on (true) or off (false).

Remarks

The data capture facility allows you to save all information being sent to the presentation space to a string. The data capture facility is initially set to off until you activate it.

Example

[C#]

 Copy Code
            // Turn data capturing on.
            screen.setDataCapture(true);
            
[VB]
 Copy Code
            'Turn data capturing on.
            screen.setDataCapture True
            

See Also