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