VisualTreeHelper.GetTransform(Visual) メソッド

定義

TransformVisual 値を返します。

public:
 static System::Windows::Media::Transform ^ GetTransform(System::Windows::Media::Visual ^ reference);
public static System.Windows.Media.Transform GetTransform (System.Windows.Media.Visual reference);
static member GetTransform : System.Windows.Media.Visual -> System.Windows.Media.Transform
Public Shared Function GetTransform (reference As Visual) As Transform

パラメーター

reference
Visual

変換値が返される Visual

戻り値

Visual の変換値。reference に変換が定義されていない場合は null

次のコード例は、 メソッドを GetTransform 使用して、指定したビジュアル オブジェクトの変換を取得する方法を示しています。

// Return the transform for the specified visual object.
Transform transform = VisualTreeHelper.GetTransform(myDrawing);

// If there is no transform defined for the object, the return value is null.
if (transform != null)
{
    // Return the offset of the returned transform. The offset is relative to the parent of the visual object.
    Point pt = transform.Transform(new Point(0, 0));
}
' Return the transform for the specified visual object.
Dim transform As Transform = VisualTreeHelper.GetTransform(myDrawing)

' If there is no transform defined for the object, the return value is null.
If transform IsNot Nothing Then
    ' Return the offset of the returned transform. The offset is relative to the parent of the visual object.
    Dim pt As Point = transform.Transform(New Point(0, 0))
End If

コードは、戻り値を使用する前に を null テストする必要があります。 返された変換のオフセットを返すには、 メソッドを使用します Transform 。 オフセット値は、 の親 Visualに対する相対値です。

注釈

または、 メソッドを TransformToAncestor 使用して、 の先祖の変換値を Visual返すこともできます。 このメソッドは常に有効な変換を返します。 次のコード例は、 メソッドの使用方法 TransformToAncestor を示しています。

// Return the general transform for the specified visual object.
GeneralTransform generalTransform1 = myTextBlock.TransformToAncestor((Visual)myTextBlock.Parent);

// Retrieve the point value relative to the parent.
Point currentPoint = generalTransform1.Transform(new Point(0, 0));
' Return the general transform for the specified visual object.
Dim generalTransform1 As GeneralTransform = myTextBlock.TransformToAncestor(CType(myTextBlock.Parent, Visual))

' Retrieve the point value relative to the parent.
Dim currentPoint As Point = generalTransform1.Transform(New Point(0, 0))

適用対象