Property VLMirror.TVLMirror.MirrorType
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: TVLMirror
Contents |
Syntax
Delphi:
property MirrorType : TVLMirrorType read FMirrorType write SetMirrorType default mtHorizontal;
C++ Builder:
__property TVLMirrorType MirrorType = { read=FMirrorType, write=SetMirrorType, default=mtHorizontal };
Summary
Mirror type - mtHorizontal, mtVertical or mtBoth.
Description
Use this property to specify the type of mirror operation to
be performed : mtHorizontal, mtVertical or mtBoth.
Delphi example:
VLMirror1.MirrorType := mtVertical;
C++ Builder example:
VLMirror1->MirrorType = mtVertical;
Visual C++(MFC) example:
VLMirror1.MirrorType = mtVertical;
Visual C++/CLI example:
mirror1->MirrorType = Mitov::VideoLab::MirrorType::Vertical;
C# example:
mirror1.MirrorType = Mitov.VideoLab.MirrorType.Vertical;
VB example:
Mirror1.MirrorType = Mitov.VideoLab.MirrorType.Vertical