Verastream SDK .Net Reference
setDataCapture Method
Example 



Specifies whether to turn the data capture facility on (true) or off (false).
Turns the data capture facility on or off.
Syntax
'Declaration
 
Public Sub setDataCapture( _
   ByVal sDCVal As Boolean _
) 
'Usage
 
Dim instance As ScreenUPG
Dim sDCVal As Boolean
 
instance.setDataCapture(sDCVal)
public void setDataCapture( 
   bool sDCVal
)
public:
void setDataCapture( 
   bool sDCVal
) 

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#] [VB]
// Turn data capturing on.
screen.setDataCapture(true);
'Turn data capturing on.
screen.setDataCapture True
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also