Screen capture
You can record both the entire screen and a certain area of it.
Use the following parameters to set the area coordinates:
| Delphi | VideoCapture1.Screen_Capture_Top := StrToInt(edScreenTop.Text); VideoCapture1.Screen_Capture_Bottom := StrToInt(edScreenBottom.Text); VideoCapture1.Screen_Capture_Left := StrToInt(edScreenLeft.Text); VideoCapture1.Screen_Capture_Right := StrToInt(edScreenRight.Text); |
| C++/C# | VideoCapture1.Screen_Capture_Top = Convert.ToInt32(edScreenTop.Text); VideoCapture1.Screen_Capture_Bottom = Convert.ToInt32(edScreenBottom.Text); VideoCapture1.Screen_Capture_Left = Convert.ToInt32(edScreenLeft.Text); VideoCapture1.Screen_Capture_Right = Convert.ToInt32(edScreenRight.Text); |

or
Set
| Delphi | VideoCapture1.Screen_Capture_FullScreen := true; |
| C++/C# | VideoCapture1.Screen_Capture_FullScreen = true; |

to record the entire screen.
Use
| Delphi | VideoCapture1.Screen_Capture_FrameRate := 5; |
| C++/C# | VideoCapture1.Screen_Capture_FrameRate = 5; |
![]()
to set frame rate.
Set
| Delphi | VideoCapture1.Screen_Capture_Grab_Mouse_Cursor := true; |
| C++/C# | VideoCapture1.Screen_Capture_Grab_Mouse_Cursor = true; |

to capture mouse cursor
Set screen capture mode.
| Delphi | VideoCapture1.Mode := Mode_Screen_Capture; |
| C++/C# | VideoCapture1.Mode = VisioForge_Video_Capture_4.TxVFMode.Mode_Screen_Capture; |



