Property VLMorphFilter.TVLMorphFilter.MorphShape
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: TVLMorphFilter
Contents |
Syntax
Delphi:
property MorphShape : TVLMorphShape read FMorphShape write SetMorphShape;
C++ Builder:
__property TVLMorphShape * MorphShape = { read=FMorphShape, write=SetMorphShape };
Summary
The Morph shape to be used.
Description
Use this property to specify the morph shape to be used by
the filter - Cross, Ellipse, Rectangle or custom.
Delphi example:
VLMorphFilter1.MorphShape.ShapeType := stEllipse;
C++ Builder example:
VLMorphFilter1->MorphShape->ShapeType := stEllipse;
Visual C++(MFC) example:
VLMorphFilter1.MorphShape.ShapeType := stEllipse;
Visual C++/CLI example:
morphFilter1->MorphShape->ShapeType = Mitov::VideoLab::MorphShapeType::Ellipse;
C# example:
morphFilter1.MorphShape.ShapeType = Mitov.VideoLab.MorphShapeType.Ellipse;
VB example:
MorphFilter1.MorphShape.ShapeType = Mitov.VideoLab.MorphShapeType.Ellipse