This list contains all types of properties tweenable. There's no need to use it.

Namespace:  Tweened
Assembly:  Tweened (in Tweened.dll)

Syntax

Visual Basic (Declaration)
Public Enumeration TweenedType
C#
public enum TweenedType
Visual C++
public enum class TweenedType
JavaScript
Tweened.TweenedType = function();
Tweened.TweenedType.createEnum('Tweened.TweenedType', false);

Members

Member nameDescription
Simple
This sort of property is typed double, directly accessible in the tag of UIElement as Canvas.Left for example:
 Copy Code
RenderTransform
This sort of property is typed double, not directly accessible in the tag of UIElement as Canvas.Left for example:
 Copy Code
            
            <Rectangle Height="55" Width="85" Canvas.Left="178" Fill="#FFFF2C2C" x:Name="can" RenderTransformOrigin="0.5,0.5" Canvas.Top="93">
                <Rectangle.RenderTransform>
                    <TransformGroup>
                        <ScaleTransform ScaleX="1" ScaleY="1"/>
                        <SkewTransform AngleX="0" AngleY="0"/>
                        <RotateTransform Angle="0"/>
                        <TranslateTransform X="0" Y="0"/>
                    </TransformGroup>
                </Rectangle.RenderTransform>
            </Rectangle>
            
                    
Color
This sort of property is typed Color, directly accessible in the tag of UIElement as Fill for example:
 Copy Code

See Also