BitmapSizeOptions.FromHeight(Int32) Method

Definition

Initializes an instance of BitmapSizeOptions that preserves the aspect ratio of the source bitmap and specifies an initial PixelHeight.

public:
 static System::Windows::Media::Imaging::BitmapSizeOptions ^ FromHeight(int pixelHeight);
public static System.Windows.Media.Imaging.BitmapSizeOptions FromHeight (int pixelHeight);
static member FromHeight : int -> System.Windows.Media.Imaging.BitmapSizeOptions
Public Shared Function FromHeight (pixelHeight As Integer) As BitmapSizeOptions

Parameters

pixelHeight
Int32

The height, in pixels, of the resulting bitmap.

Returns

An instance of BitmapSizeOptions.

Exceptions

Occurs when pixelHeight is less than zero.

Remarks

The returned BitmapSizeOptions will have its Rotation property set to Rotate0, its PreservesAspectRatio set to true, its PixelHeight set to the value of pixelHeight, and its PixelWidth set to zero.

Applies to