# closeWindowParams
Dictionary of options for the close method.
NOTE
This is an abstract type. Any object of this structure can be used where this type is used.
# Properties
# activityEnterAnimation
Animation resource to use for the incoming activity.
This value will be ignored if animated
is set to false.
See "Window Transitions in Android" in the main description of Titanium.UI.Window
for more information.
# activityExitAnimation
Animation resource to use for the outgoing activity.
This value will be ignored if animated
is set to false.
See "Window Transitions in Android" in the main description of Titanium.UI.Window
for more information.
# animated
Determines whether to use an animated effect when the window is closed. Defaults to true
on Android, false
on iOS.
This property supports animated transitions on windows except for modal windows (modal:true
).
The transitions are on by default, but you can disable this behavior by setting this value
to false
.
# animationDuration
duration of the animation in milliseconds
Default: 1000
# animationStyle
Transition type to use during a transition animation.
- Titanium.UI.iOS.AnimationStyle.CURL_DOWN
- Titanium.UI.iOS.AnimationStyle.CURL_UP
- Titanium.UI.iOS.AnimationStyle.FLIP_FROM_LEFT
- Titanium.UI.iOS.AnimationStyle.FLIP_FROM_RIGHT
- Titanium.UI.iOS.AnimationStyle.FLIP_FROM_TOP
- Titanium.UI.iOS.AnimationStyle.FLIP_FROM_BOTTOM
- Titanium.UI.iOS.AnimationStyle.CROSS_DISSOLVE
- Titanium.UI.iOS.AnimationStyle.NONE
Default: Titanium.UI.iOS.AnimationStyle.NONE