Property VLChangeFormat.TVLChangeFormat.Format
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: TVLChangeFormat
Contents |
Syntax
Delphi:
property Format : TVLVideoFormat read GetFormat write SetFormat default vfRGB24;
C++ Builder:
__property TVLVideoFormat Format = { read=GetFormat, write=SetFormat, default=vfRGB24 };
Summary
Desired output video format.
Description
Use this property to specify the desired output video format
for the component.
Delphi example:
VLChangeFormat1.ColorMode := vfGrayScale;
C++ Builder example:
VLChangeFormat1->ColorMode = vfGrayScale;
Visual C++(MFC) example:
VLChangeFormat1.ColorMode = vfGrayScale;
Visual C++/CLI example:
changeFormat1->ColorMode = Mitov::VideoLab::VideoFormat::GrayScale;
C# example:
changeFormat1.ColorMode = Mitov.VideoLab.VideoFormat.GrayScale;
VB example:
ChangeFormat1.ColorMode = Mitov.VideoLab.VideoFormat.GrayScale