Property VLWarp.TVLWarp.LeftBottomOffset
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: TVLWarp
Contents |
Syntax
Delphi:
property LeftBottomOffset : TSLOffset read FLeftBottomOffset write SetLeftBottomOffset;
C++ Builder:
__property TSLOffset * LeftBottomOffset = { read=FLeftBottomOffset, write=SetLeftBottomOffset };
Summary
X, Y offset for the Left Bottom corner of the Frame Image.
Description
Use this property to specify the X, Y offset for the Left
Bottom corner of the Frame Image.
Delphi example:
VLWarp1.LeftBottomOffset.X := 10; VLWarp1.LeftBottomOffset.Y := -10;
C++ Builder example:
VLWarp1->LeftBottomOffset->X = 10; VLWarp1->LeftBottomOffset->Y = -10;
Visual C++(MFC) example:
VLWarp1.LeftBottomOffset.X = 10; VLWarp1.LeftBottomOffset.Y = -10;
Visual C++/CLI example:
warp1->LeftBottomOffset->X = 10; warp1->LeftBottomOffset->Y = -10;
C# example:
warp1.LeftBottomOffset.X = 10; warp1.LeftBottomOffset.Y = -10;
VB example:
Warp1.LeftBottomOffset.X = 10 Warp1.LeftBottomOffset.Y = -10