Leadtools.Windows.Controls Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.03.25
ImageVerticalAlignment Property
See Also 
Leadtools.Windows.Controls Namespace > BitmapSourceViewer Class : ImageVerticalAlignment Property





Gets and sets a value that determines how to center the image in the control's client area vertically, when the height of the destination rectangle is smaller than the height of the client area.

Syntax

Visual Basic (Declaration) 
Public Property ImageVerticalAlignment As VerticalAlignment
Visual Basic (Usage)Copy Code
Dim instance As BitmapSourceViewer
Dim value As VerticalAlignment
 
instance.ImageVerticalAlignment = value
 
value = instance.ImageVerticalAlignment
C# 
public VerticalAlignment ImageVerticalAlignment {get; set;}
Managed Extensions for C++ 
public: __property VerticalAlignment get_ImageVerticalAlignment();
public: __property void set_ImageVerticalAlignment( 
   VerticalAlignment value
);
C++/CLI 
public:
property VerticalAlignment ImageVerticalAlignment {
   VerticalAlignment get();
   void set (VerticalAlignment value);
}
XAML Attributes Usage 

<object ImageVerticalAlignment=VerticalAlignment .../>

Dependency Property Information 

Identifier field

ImageVerticalAlignmentProperty

Metadata properties set to true

None

Return Value

A HorizontalAlignment enumeration value that determines how to center the image in the control's client area vertically, when the height of the destination rectangle is smaller than the height of the client area. Default value is HorizontalAlignment.Center.

Example

For XAML example, refer to BitmapSourceViewer.

For C#/VB examples, refer to BitmapSourceViewer.

Remarks

As an example, this can be used to center a small image when it is displayed in a control that is larger than the image's dimensions (Width x Height).

This can also be used in conjunction with the ImageHorizontalAlignment property, SizeMode property and the ScaleFactor property to center an image when the zoomed display dimensions are smaller than the control's dimensions.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

See Also