Enum SLFilterTypes.TSLCoordinateMode
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: Mitov.BasicLab
Unit: SLFilterTypes
Contents |
Syntax
Delphi:
type TSLCoordinateMode = (cmLeftTop, cmLeftBottom, cmLeftCenter, cmRightTop, cmRightBottom, cmRightCenter, cmTopCenter, cmBottomCenter, cmCenter);
C++ Builder:
enum TSLCoordinateMode {cmLeftTop, cmLeftBottom, cmLeftCenter, cmRightTop, cmRightBottom, cmRightCenter, cmTopCenter, cmBottomCenter, cmCenter};
Visual C++ (MFC):
enum CTSLCoordinateMode {cmLeftTop, cmLeftBottom, cmLeftCenter, cmRightTop, cmRightBottom, cmRightCenter, cmTopCenter, cmBottomCenter, cmCenter};
Summary
Enumerated type for selecting draw coordinate mode.
Description
Defines enumerated type for selecting draw coordinate mode.
Values
| cmLeftTop | The coordinate starts from the left top. |
| cmLeftBottom | The coordinate starts from the left bottom. |
| cmLeftCenter | The coordinate starts from the left center. |
| cmRightTop | The coordinate starts from the right top. |
| cmRightBottom | The coordinate starts from the right bottom. |
| cmRightCenter | The coordinate starts from the right center. |
| cmTopCenter | The coordinate starts from the top center. |
| cmBottomCenter | The coordinate starts from the bottom center. |
| cmCenter | The coordinate starts from the center. |