Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
RasterPaintAlignMode Enumeration
See Also  
Leadtools Namespace : RasterPaintAlignMode Enumeration




Determines how to align the image in the destination rectangle.

Syntax

Visual Basic (Declaration) 
Public Enum RasterPaintAlignMode 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As RasterPaintAlignMode
C# 
public enum RasterPaintAlignMode : Enum 
Managed Extensions for C++ 
__value public enum RasterPaintAlignMode : public Enum 
C++/CLI 
public enum class RasterPaintAlignMode : public Enum 

Members

MemberDescription
Near Align the image to the left (if this is the horizontal alignment) or top (if this is the vertical alignment) of the destination rectangle.
Center Center the image in the middle of the destination rectangle. If the image size is greater than the destination rectangle size then do not center the image.
CenterAlways Center the image in the middle of the destination rectangle.
Far Align the image to the right (if this is the horizontal alignment) or bottom (if this is the vertical alignment) of the destination rectangle.

Remarks

Used by the the RasterImage.CalculatePaintModeRectangle method to determines how to align the image in the destination rectangle.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.RasterPaintAlignMode

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