Turns the data capture facility on or off. In addition, turns on or off the suppression of updates to the presentation space.
Namespace: ScreenUPG
Assembly: ScreenUPG (in ScreenUPG.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Sub setDataCaptureEx( _ ByVal sDCVal As Boolean, _ ByVal sSPSUVal As Boolean _ ) |
C# |
---|
public void setDataCaptureEx( bool sDCVal, bool sSPSUVal ) |
C++ |
---|
public: void setDataCaptureEx( bool sDCVal, bool sSPSUVal ) sealed |
J# |
---|
public void setDataCaptureEx( bool sDCVal, bool sSPSUVal ) |
JScript |
---|
public
function setDataCaptureEx( sDCVal : bool, sSPSUVal : bool ) |
Parameters
- sDCVal
- Specifies whether to turn the data capture facility on (true) or off (false).
- sSPSUVal
- Specifies whether to turn the suppression of presentation space updates 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#]
![]() | |
---|---|
// Turn on data capture and suppress presentation space updates. screen.setDataCaptureEx(true, true); |
![]() | |
---|---|
// Turn on data capture and suppress presentation space updates. screen.setDataCaptureEx True, True |