# \[RobotStudio SDK\] Placing a toolwindow

**URL:** https://tech-community.robotics.abb.com/t/robotstudio-sdk-placing-a-toolwindow/8993
**Category:** Developer Tools
**Tags:** robotstudio-sdk, robotstudio
**Created:** [July 24, 2019, 8:34am UTC](https://tech-community.robotics.abb.com/t/robotstudio-sdk-placing-a-toolwindow/8993 "2019-07-24T08:34:57Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Sergio\_Puime](https://avatars.discourse-cdn.com/v4/letter/s/2bfe46/32.png) [@Sergio\_Puime](https://tech-community.robotics.abb.com/u/Sergio_Puime)
#### Post date: [July 24, 2019, 8:34am UTC](https://tech-community.robotics.abb.com/t/robotstudio-sdk-placing-a-toolwindow/8993/1 "2019-07-24T08:34:57Z")

</div>

Hi.

I’m creating a RS addin and want to place a toolwindow over the ObjectBrowser, but I don’t know how. I’m able to place it in the ObjectBrowser, but I don’t know the name to place it over (like the Create Box one). I was looking at the api reference, but “UIEnvironment.Windows” doesn’t list the “places” options available.

¿Where can I found the “places” options available?

```auto
ToolWindow tw = new ToolWindow("MyToolWindow");
tw.Caption = "Floating ToolWindow."; 
UIEnvironment.Windows.AddTabbed(tw, UIEnvironment.Windows["ObjectBrowser"] as ToolWindow);

```

Placed in the ObjectBrowser.

 ![image.png](https://europe1.discourse-cdn.com/flex005/uploads/robotics1/original/1X/bd8bb4eed99a31bf6d5eb6e3c599997d0e9ffa12.png)

Where I want it (I moved it manually).

 ![image.png](https://europe1.discourse-cdn.com/flex005/uploads/robotics1/original/2X/3/32efde89eef36528a7f8529d16e06ddd61d97ada.png)

BR.

---

<div class="post-metadata">

### Author: ![Sergio\_Puime](https://avatars.discourse-cdn.com/v4/letter/s/2bfe46/32.png) [@Sergio\_Puime](https://tech-community.robotics.abb.com/u/Sergio_Puime)
#### Post date: [July 29, 2019, 10:00am UTC](https://tech-community.robotics.abb.com/t/robotstudio-sdk-placing-a-toolwindow/8993/2 "2019-07-29T10:00:47Z")

</div>

I manege to solve the problem with the “AddDocked Method”

```auto
AddDocked(ToolWindow, DockStyle, ToolWindow)

```

```auto
UIEnvironment.Windows.AddDocked(tw, System.Windows.Forms.DockStyle.Top, UIEnvironment.Windows["ObjectBrowser"] as ToolWindow);

```
