Enum VLCommonCombine.TVLCombineSizeMode
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: VLCommonCombine
Contents |
Syntax
Delphi:
type TVLCombineSizeMode = (smIntersect, smWrappingRect, smVerticalIntersect, smHorizontalIntersect, smCustom);
C++ Builder:
enum TVLCombineSizeMode {smIntersect, smWrappingRect, smVerticalIntersect, smHorizontalIntersect, smCustom};
Visual C++ (MFC):
enum CTVLCombineSizeMode {smIntersect, smWrappingRect, smVerticalIntersect, smHorizontalIntersect, smCustom};
Summary
Combine size mode enumeration.
Description
Defines the methods used to calculate the size of the output video frame of the TVLCombine component.
Values
smIntersect | The size will be the intersection of the images. |
smWrappingRect | The size will be size of the wrapping rectangle around the images. |
smVerticalIntersect | The size will be vertical intersection of the images. |
smHorizontalIntersect | The size will be horizontal intersection of the images. |
smCustom | Use defined size. |