Property VLCapture.TVLCapture.VideoSize

From Mitov Wiki Doc
Jump to: navigation, search

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: TVLCapture

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:

VLCapture1.VideoSize.Current := False;
VLCapture1.VideoSize.Width   := 200;
VLCapture1.VideoSize.Height  := 100;

C++ Builder example:

VLCapture1->VideoSize->Current = false;
VLCapture1->VideoSize->Width   = 200;
VLCapture1->VideoSize->Height  = 100;

Visual C++(MFC) example:

VLCapture1.VideoSize.Current = false;
VLCapture1.VideoSize.Width   = 200;
VLCapture1.VideoSize.Height  = 100;

C# example:

capture1.VideoSize.Current = false;
capture1.VideoSize.Width   = 200;
capture1.VideoSize.Height  = 100;

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox