Property SLConjugate.TSLConjugate.Flip
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: TSLConjugate
Contents |
Syntax
Delphi:
property Flip : Boolean read FFlip write SetFlip;
C++ Builder:
__property bool Flip = { read=FFlip, write=SetFlip };
Summary
Reverse order.
Description
If this property is set to True the output buffer will be in
reverse order.
Delphi example:
SLConjugate1.Flip := True;
C++ Builder example:
SLConjugate1->Flip = true;
Visual C++(MFC) example:
SLConjugate1.Flip = true;
C# example:
conjugate1.Flip = true;