Click or drag to resize
CompositeTransform Class
Applies multiple transform operations to an object.
Inheritance Hierarchy

Namespace: Windows.UI.Xaml.Media
Assembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax
C#
public sealed class CompositeTransform : Transform

The CompositeTransform type exposes the following members.

Constructors
  NameDescription
Public methodCompositeTransform
Initializes a new instance of the CompositeTransform class
Top
Methods
  NameDescription
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetValue
Returns the current effective value of a dependency property from a DependencyObject.
(Inherited from DependencyObject.)
Public methodGetVisualStateValue (Inherited from DependencyObject.)
Public methodReadLocalValue
Returns the local value of a dependency property, if a local value is set.
(Inherited from DependencyObject.)
Public methodSetBinding
Attaches a binding to a FrameworkElement, using the provided binding object.
(Inherited from DependencyObject.)
Public methodSetInheritedValue
Sets the inherited value of a dependency property on a DependencyObject. Do not use this method.
(Inherited from DependencyObject.)
Public methodSetLocalValue
Sets the local value of a dependency property on a DependencyObject while not overriding a hypothetical Binding (example: when the user writes in a TextBox with a two way Binding on its Text property).
(Inherited from DependencyObject.)
Public methodSetValue
Sets the local value of a dependency property on a DependencyObject.
(Inherited from DependencyObject.)
Public methodSetVisualStateValue (Inherited from DependencyObject.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTransform
Transforms the specified point and returns the result.
(Inherited from GeneralTransform.)
Public methodTransformPoint
Transforms the specified point and returns the result.
(Inherited from GeneralTransform.)
Top
Fields
  NameDescription
Public fieldStatic memberRotationProperty
Identifies the Rotation dependency property.
Public fieldStatic memberScaleXProperty
Identifies the ScaleX dependency property.
Public fieldStatic memberScaleYProperty
Identifies the ScaleY dependency property.
Public fieldStatic memberSkewXProperty
Identifies the SkewX dependency property.
Public fieldStatic memberSkewYProperty
Identifies the SkewY dependency property.
Public fieldStatic memberTranslateXProperty
Identifies the TranslateX dependency property. The default is 0.
Public fieldStatic memberTranslateYProperty
Identifies the TranslateY dependency property
Top
Properties
  NameDescription
Public propertyDispatcher
Gets the CoreDispatcher that this object is associated with.
(Inherited from DependencyObject.)
Public propertyRotation
Gets or sets the angle, in degrees, of clockwise rotation. The default is 0.
Public propertyScaleX
Gets or sets the x-axis scale factor. You can use this property to stretch or shrink an object horizontally. The default is 1.
Public propertyScaleY
Gets or sets the y-axis scale factor. You can use this property to stretch or shrink an object vertically. The default is 1.
Public propertySkewX
Gets or sets the x-axis skew angle, which is measured in degrees counterclockwise from the y-axis. A skew transform can be useful for creating the illusion of three-dimensional depth in a two-dimensional object. The default is 0.
Public propertySkewY
Gets or sets the y-axis skew angle, which is measured in degrees counterclockwise from the x-axis. A skew transform can be useful for creating the illusion of three-dimensional depth in a two-dimensional object. The default is 0.
Public propertyTranslateX
Gets or sets the distance to translate along the x-axis.
Public propertyTranslateY
Gets or sets the distance to translate (move) an object along the y-axis. The default is 0.
Top
See Also