Property VLMirror.TVLMirror.MirrorType

From Mitov Wiki Doc
(Difference between revisions)
Jump to: navigation, search
(Automated Syncronization with Documentation)
 
(Automated Syncronization with Documentation)
 
Line 10: Line 10:
 
=== Delphi: ===
 
=== Delphi: ===
 
<code>
 
<code>
'''property''' MirrorType : [[Enum VLMirror.TVLMirrorType|TVLMirrorType]] '''read''' FMirrorType '''write''' SetMirrorType;
+
'''property''' MirrorType : [[Enum VLMirror.TVLMirrorType|TVLMirrorType]] '''read''' FMirrorType '''write''' SetMirrorType '''default''' [[Enum item VLMirror.TVLMirrorType.mtHorizontal|mtHorizontal]];
 
</code>
 
</code>
  
 
=== C++ Builder: ===
 
=== C++ Builder: ===
 
<code>
 
<code>
'''__property''' [[Enum VLMirror.TVLMirrorType|TVLMirrorType]] MirrorType = { '''read'''=FMirrorType,  '''write'''=SetMirrorType };
+
'''__property''' [[Enum VLMirror.TVLMirrorType|TVLMirrorType]] MirrorType = { '''read'''=FMirrorType,  '''write'''=SetMirrorType,  '''default'''=[[Enum item VLMirror.TVLMirrorType.mtHorizontal|mtHorizontal]] };
 
</code>
 
</code>
  

Latest revision as of 17:19, 18 October 2012

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

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox