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 添付プロパティの現在値。

属性

例外

指定された targetnull です。

次の例は、イメージ オブジェクトの を BitmapScalingMode 取得する方法を示しています。

// 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)

適用対象

こちらもご覧ください