Visual Basic (Declaration) | |
---|---|
Public Property ImageVerticalAlignment As VerticalAlignment |
Visual Basic (Usage) | Copy Code |
---|---|
|
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 | |
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.For XAML example, refer to BitmapSourceViewer.
For C#/VB examples, refer to BitmapSourceViewer.
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.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family