Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.12 KB

geometry_transform.md

File metadata and controls

35 lines (26 loc) · 1.12 KB
-api-id -api-type
P:Microsoft.UI.Xaml.Media.Geometry.Transform
winrt property

Microsoft.UI.Xaml.Media.Geometry.Transform

-description

Gets or sets the Transform object applied to a Geometry.

-xaml-syntax

<geometry>
  <geometry.Transform>
    singleTransform
  </geometry.Transform
</geometry>

-xaml-values

singleTransform
singleTransformExactly one object element for an object that derives from Transform. This is typically one of the following classes: RotateTransform, ScaleTransform, SkewTransform, TranslateTransform, MatrixTransform, or TransformGroup. By using a TransformGroup here, you can apply multiple transforms by defining child object elements of the TransformGroup. See the XAML Values section for TransformGroup.
## -property-value The transformation applied to the [Geometry](geometry.md). Note that this value may be a single [Transform](transform.md) or a list of [Transform](transform.md) items.

-remarks

-examples

-see-also