SelectWindow method
Description
Call this method to select a window to capture.
Syntax [Visual Basic]
Sub SelectWindow(ByRef Left As Long, ByRef Top As Long, ByRef Right As Long, ByRef Bottom As Long)
| Left |
Left margin |
| Top |
Top margin |
| Right |
Right margin |
| Bottom |
Bottom margin |
Example [Visual Basic]
Dim left As Integer = 0
Dim top As Integer = 0
Dim right As Integer = 0
Dim bottom As Integer = 0
VideoRecorder.SelectWindow(left, top, right, bottom)
Example [Visual C#]
int left = 0, top = 0, right = 0, bottom = 0;
VideoRecorder.SelectWindow(out left, out top, out right, out bottom);
Example [Visual C++]
long left=0, top=0, right=0, bottom=0;
VideoRecorder.SelectWindow(&left, &top, &right, &bottom);
|