Enum VLMirror.TVLMirrorType
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.
Package: VideoLabPkg
Unit: VLMirror
Contents |
Syntax
Delphi:
type TVLMirrorType = (mtHorizontal, mtVertical, mtBoth);
C++ Builder:
enum TVLMirrorType {mtHorizontal, mtVertical, mtBoth};
Visual C++ (MFC):
enum CTVLMirrorType {mtHorizontal, mtVertical, mtBoth};
Summary
Type mirror operations enumeration.
Description
Defines the type of mirror operations to be performed by the TVLMirror component.
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
Values
mtHorizontal | Horizontal mirror operation. |
mtVertical | Vertical mirror operation. |
mtBoth | Horizontal and vertical mirror operation. |