Leadtools.ImageProcessing.Effects Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
UnderlayOffset Property
See Also 
Leadtools.ImageProcessing.Effects Namespace > TextureAlphaBlendCommand Class : UnderlayOffset Property



Point structure that contains the underlay image offset with respect to the destination image.

Syntax

Visual Basic (Declaration) 
Public Property UnderlayOffset As Point
Visual Basic (Usage)Copy Code
Dim instance As TextureAlphaBlendCommand
Dim value As Point
 
instance.UnderlayOffset = value
 
value = instance.UnderlayOffset
C# 
public Point UnderlayOffset {get; set;}
C++/CLI 
public:
property Point UnderlayOffset {
   Point get();
   void set (Point value);
}

Return Value

Point structure that contains the underlay image offset with respect to the destination image. The command will use this point to calculate the parts of the underlay image that will be applied to the mask image. Using this point will give the user the ability to give the feel of continuous texture when applying this method to neighboring parts inside the destination image using the same or different mask. If the UnderlayImage property is set to null also set this property to null.

Example

Refer to UnderlayImage.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also