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