Property VLDSCapture.TVLDSCapture.VideoSize
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLDSCapture
Contents |
Syntax
Delphi:
property VideoSize : TVLOptionalVideoSize read FVideoSize write SetVideoSize;
C++ Builder:
__property TVLOptionalVideoSize * VideoSize = { read=FVideoSize, write=SetVideoSize };
Summary
Desired video frame size.
Description
Specifies the desired size of the captured video frames. The
size must be supported by the capturing device you are using.
If the size doesn't match one of the supported formats, the
result is non predictable.
Delphi example:
VLDSCapture1.VideoSize.Current := False; VLDSCapture1.VideoSize.Width := 200; VLDSCapture1.VideoSize.Height := 100;
C++ Builder example:
VLDSCapture1->VideoSize->Current = false; VLDSCapture1->VideoSize->Width = 200; VLDSCapture1->VideoSize->Height = 100;
Visual C++(MFC) example:
VLDSCapture1.VideoSize.Current = false; VLDSCapture1.VideoSize.Width = 200; VLDSCapture1.VideoSize.Height = 100;
C# example:
dsCapture1.VideoSize.Current = false; dsCapture1.VideoSize.Width = 200; dsCapture1.VideoSize.Height = 100;