Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.21 KB

shape_geometrytransform.md

File metadata and controls

37 lines (26 loc) · 1.21 KB
-api-id -api-type
P:Windows.UI.Xaml.Shapes.Shape.GeometryTransform
winrt property

Windows.UI.Xaml.Shapes.Shape.GeometryTransform

-description

Gets a value that represents a Transform that is applied to the geometry of a Shape before it is drawn.

-xaml-syntax

<object>
  <object.GeometryTransform>
    singleTransform
  </object.GeometryTransform>
</object>

-xaml-values

singleTransform
singleTransformExactly one object element for an object that derives from Transform. This is typically one of the transforms: RotateTransform, ScaleTransform, SkewTransform, TranslateTransform, MatrixTransform, TransformGroup. By using TransformGroup here, you can apply multiple transforms by defining child object elements of the TransformGroup. See the "XAML Values" section for TransformGroup. Also, custom transforms might derive from MatrixTransform.
## -property-value A [Transform](../windows.ui.xaml.media/transform.md) that is applied to the geometry of a [Shape](shape.md) before it is drawn.

-remarks

-examples

-see-also