RenderOptions.GetBitmapScalingMode(DependencyObject) Метод

Определение

Возвращает значение присоединенного свойства BitmapScalingMode для указанного объекта зависимости.

public:
 static System::Windows::Media::BitmapScalingMode GetBitmapScalingMode(System::Windows::DependencyObject ^ target);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static System.Windows.Media.BitmapScalingMode GetBitmapScalingMode (System.Windows.DependencyObject target);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetBitmapScalingMode : System.Windows.DependencyObject -> System.Windows.Media.BitmapScalingMode
Public Shared Function GetBitmapScalingMode (target As DependencyObject) As BitmapScalingMode

Параметры

target
DependencyObject

Объект зависимости, из которого требуется извлечь значение присоединенного свойства BitmapScalingMode.

Возвращаемое значение

Текущее значение присоединенного свойства BitmapScalingMode в заданном объекте зависимости.

Атрибуты

Исключения

Заданный объект target имеет значение null.

Примеры

В следующем примере показано, как получить BitmapScalingMode для объекта image.

// Get the bitmap scaling mode for the image.
BitmapScalingMode bitmapScalingMode = RenderOptions.GetBitmapScalingMode(MyImage);
' Get the bitmap scaling mode for the image.
Dim bitmapScalingMode As BitmapScalingMode = RenderOptions.GetBitmapScalingMode(MyImage)

Применяется к

См. также раздел