Specifies the initial placement for the dockable window.

Namespace: http://schemas.esri.com/Desktop/AddInsSchema: DesktopAddIns_ElementOnly.xsd

Parents

 DockableWindow

Attributes

Name Type Required Description
 height  int

Dockable window's initial height.

 neighbor  string

The ID of the dockable window that will be placed together with this dockable window when the first time it shows up .

 position  ST_DockPosition

Dockable window's initial dock position. The options are left, right, top, bottom, float and group.

 state  ST_DockState

Dockable window's initial dock state. The opitions are pinned, unpinned, and hidden.

 width  int

Dockable window's initial width.

Syntax

CopyXML
<xs:element name="InitialPlacement" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType>
    <xs:attribute name="height" type="xs:int" use="optional" />
    <xs:attribute name="width" type="xs:int" use="optional" />
    <xs:attribute name="neighbor" type="xs:string" use="optional" />
    <xs:attribute name="state" type="ST_DockState" use="optional" />
    <xs:attribute name="position" type="ST_DockPosition" use="optional" />
  </xs:complexType>
</xs:element>

See Also