# openWindowParams

Dictionary of options for the open method.

Availability
2.0.0
2.0.0
9.2.0
Extends
Object

NOTE

This is an abstract type. Any object of this structure can be used where this type is used.

# Properties

# activityEnterAnimation

Availability
3.1.0
activityEnterAnimation :Number

Animation resource to run on the activity being opened.

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

Availability
3.1.0
activityExitAnimation :Number

Animation resource to run on the activity that is being put in background as a window is being opened above it.

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

Availability
2.0.0
2.0.0
9.2.0
animated :Boolean

Determines whether to use an animated effect when the window is shown.

On Android, 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.

On iOS, only use this property to disable animated transitions on modal windows. This property has unintended side effects on non-modal windows if it is defined.

Default: true


# bottom

Availability
2.0.0
2.0.0
9.2.0
bottom :Number | String

Window's bottom position, in platform-specific units.

On Android, this property has no effect.

Default: 0


# forceModal

Availability
8.2.0
9.2.0
forceModal :Boolean

Indicates whether the window enforces modal behaviour.

Set to true to prevent interactive dismissal of window while it is onscreen.

Default: false


# fullscreen

Availability
2.0.0
2.0.0
9.2.0
fullscreen :Boolean

Determines if the window is fullscreen.

Default: false


# height

Availability
2.0.0
2.0.0
9.2.0
height :Number | String

Window's height, in platform-specific units.

On Windows Phone and Windows 10 Mobile, this property does not take any effect. On Windows 10 Store App, resizing Window takes no effect in following cases according to Windows Runtime API document.

  • The requested size is larger than the available work area.
  • The requested size is less than the view's minimum size.
  • The smallest allowed minimum size is 192 x 48 effective pixels.
  • The largest allowed minimum size is 500 x 500 effective pixels.

# left

Availability
2.0.0
2.0.0
9.2.0
left :Number | String

Window's left position, in platform-specific units.

On Android, this property has no effect.

Default: 0


modal :Boolean

Determines whether to open the window modal in front of other windows.

Default: false


navBarHidden :Boolean

For modal windows, hides the nav bar (true) or shows the nav bar (false).

On iOS, beginning with Release 3.1.3, this is no longer a valid parameter passed to the open method.

Default: false


right :Number | String

Window's right position, in platform-specific units.

On Android, this property has no effect.

Default: 0


# top

Availability
2.0.0
2.0.0
9.2.0
top :Number | String

Window's top position, in platform-specific units.

On Android, this property has no effect.

Default: 0


# width

Availability
2.0.0
2.0.0
9.2.0
width :Number | String

Window's width, in platform-specific units.

On Windows Phone and Windows 10 Mobile, this property does not take any effect. On Windows 10 Store App, resizing Window takes no effect in following cases according to Windows Runtime API document.

  • The requested size is larger than the available work area.
  • The requested size is less than the view's minimum size.
  • The smallest allowed minimum size is 192 x 48 effective pixels.
  • The largest allowed minimum size is 500 x 500 effective pixels.
  • This method is called while in while the app is running in Tablet Mode.