# ApplicationStartOptions

**Kind**: interface | **Module**: [App Management](https://docs.interop.io/browser/reference/javascript/app%20management/index.md)

**Source**: https://docs.interop.io/browser/reference/javascript/app management/applicationstartoptions/index.html

Object with options for starting an application.

## Properties

- **`channelId`** (`string`, optional)
  Name of the Channel which the window will join.
- **`height`** (`number`, optional) default: `400`
  Window height.
- **`left`** (`number`, optional) default: `0`
  Distance of the top left window corner from the left edge of the screen.
- **`relativeDirection`** (`"top" | "left" | "right" | "bottom"`, optional) default: `"right"`
  Direction (`"bottom"`, `"top"`, `"left"`, `"right"`) of positioning the window relatively to the `relativeTo` window. Considered only if `relativeTo` is supplied.
- **`relativeTo`** (`string`, optional)
  The ID of the window that will be used to relatively position the new window.
  Can be combined with `relativeDirection`.
- **`top`** (`number`, optional) default: `0`
  Distance of the top left window corner from the top edge of the screen.
- **`waitForAGMReady`** (`boolean`, optional)
- **`width`** (`number`, optional) default: `400`
  Window width.
