Visual Basic (Declaration) | |
---|---|
Public Property ImageHorizontalAlignment As HorizontalAlignment |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public HorizontalAlignment ImageHorizontalAlignment {get; set;} |
Managed Extensions for C++ | |
---|---|
public: __property HorizontalAlignment get_ImageHorizontalAlignment(); public: __property void set_ImageHorizontalAlignment( HorizontalAlignment value ); |
C++/CLI | |
---|---|
public: property HorizontalAlignment ImageHorizontalAlignment { HorizontalAlignment get(); void set (HorizontalAlignment value); } |
XAML Attributes Usage | |
---|---|
<object ImageHorizontalAlignment=HorizontalAlignment .../> |
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 horizontally, when the width of the destination rectangle is smaller than the width 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