# ShowUIOptions
Options for configuring the plugin UI display.

{/* Do not edit this file. It is automatically generated by API Documenter. */}

## ShowUIOptions interface

Options for configuring the plugin UI display.

**Signature:**

```typescript
interface ShowUIOptions
```

## Example

```ts
creator.ui.show({ width: 400, height: 600 });
```

## Properties

<table>
  <thead>
    <tr>
      <th>
        Property
      </th>

      <th>
        Modifiers
      </th>

      <th>
        Type
      </th>

      <th>
        Description
      </th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        [height?](/en/creator-api/types/show-ui-options/height)
      </td>

      <td />

      <td>
        number | undefined
      </td>

      <td>
        _(Optional)_ Height of the plugin UI window in pixels
      </td>
    </tr>

    <tr>
      <td>
        [position?](/en/creator-api/types/show-ui-options/position)
      </td>

      <td />

      <td>
        [WindowPosition](/en/creator-api/types/window-position) | undefined
      </td>

      <td>
        _(Optional)_ The initial position of the plugin UI window.

        If not specified, the plugin window appears near the top-right of the viewport, but offset to avoid overlapping the properties panel.
      </td>
    </tr>

    <tr>
      <td>
        [width?](/en/creator-api/types/show-ui-options/width)
      </td>

      <td />

      <td>
        number | undefined
      </td>

      <td>
        _(Optional)_ Width of the plugin UI window in pixels
      </td>
    </tr>
  </tbody>
</table>
