Returns the current state of the data capture facility.
Namespace: ScreenUPG
Assembly: ScreenUPG (in ScreenUPG.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function getDataCapture() As Boolean |
C# |
---|
public bool getDataCapture() |
C++ |
---|
public: bool getDataCapture() sealed |
J# |
---|
public bool getDataCapture() |
JScript |
---|
public function getDataCapture() : bool |
Return Value
true or false. If the data capture facility is on, the return value is true. Otherwise, it is 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 | |
---|---|
bool gdc = screen.getDataCapture(); |