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