Property VLBasicVideoCompression.TVLBasicSizeVideoDecompressor.Width
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: TVLBasicSizeVideoDecompressor
Contents |
Syntax
Delphi:
property Width : Integer read FWidth write SetWidth default 240;
C++ Builder:
__property int Width = { read=FWidth, write=SetWidth, default=240 };
Summary
Desired width of the produced video frame.
Description
Use this property to specify the Width of the produced video
frame.
Delphi example:
<c>VLVideoDecompressor1.Width := 240;</c>
C++ Builder example:
<c>VLVideoDecompressor1->Width = 240;</c>
Visual C++(MFC) example:
<c>VLVideoDecompressor1.Width = 240;</c>
Visual C++/CLI example:
<c>videoDecompressor1->Width = 240;</c>
C# example:
<c>videoDecompressor1.Width = 240;</c>
VB example:
<c>VideoDecompressor1.Width = 240</c>