Class LayoutTransition
Definition
- Assembly:
- Tizen.NUI.dll
LayoutTransition stores the animation setting for a transition condition.
public class LayoutTransition
- Inheritance
-
objectLayoutTransition
Constructors
View SourceLayoutTransition()
LayoutTransition default constructor.
Declaration
public LayoutTransition()
LayoutTransition(TransitionCondition, AnimatableProperties, object, TransitionComponents)
LayoutTransition constructor.
Declaration
public LayoutTransition(TransitionCondition condition, AnimatableProperties animatableProperty, object targetValue, TransitionComponents animator)
Parameters
Type | Name | Description |
---|---|---|
TransitionCondition | condition | The animatable condition. |
AnimatableProperties | animatableProperty | the property to animate. |
object | targetValue | target value of the property. |
TransitionComponents | animator | Components to define the animator. |
Properties
View SourceAnimatableProperty
Property to animate.
Declaration
public AnimatableProperties AnimatableProperty { get; set; }
Property Value
Type | Description |
---|---|
AnimatableProperties |
Animator
Components of the Animator.
Declaration
public TransitionComponents Animator { get; set; }
Property Value
Type | Description |
---|---|
TransitionComponents |
Condition
Condition for this Transition
Declaration
public TransitionCondition Condition { get; set; }
Property Value
Type | Description |
---|---|
TransitionCondition |
TargetValue
Target value to animate to.
Declaration
public object TargetValue { get; set; }
Property Value
Type | Description |
---|---|
object |