Show / Hide Table of Contents

Class SkewTransform

Represents a two-dimensional skew.

Inheritance
System.Object
DependencyObject
GeneralTransform
Transform
SkewTransform
Inherited Members
Transform.TryTransform(Point, Point)
Transform.TransformBounds(Rect)
Transform.Inverse
GeneralTransform.TransformPoint(Point)
GeneralTransform.Transform(Point)
DependencyObject.GetValue(DependencyProperty)
DependencyObject.SetCurrentValue(DependencyProperty, Object)
DependencyObject.ReadLocalValue(DependencyProperty)
DependencyObject.SetValue(DependencyProperty, Object)
DependencyObject.SetValue(DependencyPropertyKey, Object)
DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs)
DependencyObject.CoerceValue(DependencyProperty)
DependencyObject.Dispatcher
DependencyObject.INTERNAL_OnAttachedToVisualTree()
DependencyObject.INTERNAL_OnDetachedFromVisualTree()
DependencyObject.ClearValue(DependencyProperty)
DependencyObject.ClearValue(DependencyPropertyKey)
DependencyObject.CheckAccess()
DependencyObject.GetAnimationBaseValue(DependencyProperty)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Media
Assembly: OpenSilver.dll
Syntax
public sealed class SkewTransform : Transform, IDependencyObject

Fields

| Improve this Doc View Source

AngleXProperty

Identifies the AngleX dependency property.

Declaration
public static readonly DependencyProperty AngleXProperty
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

AngleYProperty

Identifies the AngleY dependency property.

Declaration
public static readonly DependencyProperty AngleYProperty
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

CenterXProperty

Identifies the CenterX dependency property.

Declaration
public static readonly DependencyProperty CenterXProperty
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

CenterYProperty

Identifies the CenterY dependency property.

Declaration
public static readonly DependencyProperty CenterYProperty
Field Value
Type Description
DependencyProperty

Properties

| Improve this Doc View Source

AngleX

Gets or sets the x-axis skew angle, which is measured in degrees counterclockwise from the y-axis.

Declaration
public double AngleX { get; set; }
Property Value
Type Description
System.Double

The skew angle, which is measured in degrees counterclockwise from the y-axis. The default is 0.

| Improve this Doc View Source

AngleY

Gets or sets the y-axis skew angle, which is measured in degrees counterclockwise from the x-axis.

Declaration
public double AngleY { get; set; }
Property Value
Type Description
System.Double

The skew angle, which is measured in degrees counterclockwise from the x-axis. The default is 0.

| Improve this Doc View Source

CenterX

Gets or sets the x-coordinate of the transform center.

Declaration
public double CenterX { get; set; }
Property Value
Type Description
System.Double

The x-coordinate of the transform center. The default is 0.

| Improve this Doc View Source

CenterY

Gets or sets the y-coordinate of the transform center.

Declaration
public double CenterY { get; set; }
Property Value
Type Description
System.Double

The y-coordinate of the transform center. The default is 0.

Extension Methods

DependencyObjectHelper.GetSelfAndAncestors(DependencyObject)
VisualTreeExtensions.GetVisualAncestors(DependencyObject)
VisualTreeExtensions.GetVisualAncestorsAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualChildren(DependencyObject)
VisualTreeExtensions.GetVisualChildrenAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualDescendants(DependencyObject)
VisualTreeExtensions.GetVisualDescendantsAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualSiblings(DependencyObject)
VisualTreeExtensions.GetVisualSiblingsAndSelf(DependencyObject)
  • Improve this Doc
  • View Source