$dockpanels » History » Revision 8
Revision 7 (Per Amundsen, 04/09/2022 08:51 PM) → Revision 8/18 (Per Amundsen, 04/11/2022 01:23 PM)
_Added in 1.9.4_
*$dockpanels*
Returns [[$true]] if any dockpanel is visible except Treebar, otherwise [[$false]].
_See also [[Monitor Panels]]._
*$dockpanels(name)*
Returns [[$true]] if named dockpanel is visible, otherwise [[$false]].
*Parameters*
name - The panel name to check. (Server, Channel, Private, Url, Notify, Dcc, Highlight, Nicklist or Treebar)
*Properties*
.side - Returns the docked panel side. (left/right/top/bottom)
.container - Returns the container position for the panel.
.panel - Returns the panel position.
.tab - Returns the tab position for the panel.
.name - Returns the name of the window/docked panel.
.locked - Returns [[$true]] if the docked panel is locked, otherwise [[$false]].
.pinned - Returns [[$true]] if the docked panel is pinned, otherwise [[$false]].
.visible - Returns [[$true]] if the docked panel is visible, otherwise [[$false]].
.w - Returns the docked panel width.
.h - Returns the docked panel height.
.wid - Returns the window id of the panel if any.
*Example*
<pre>
; Display information about the highlight panels.
//echo -ag Higlight is $iif($dockpanels(Highlight), Visible, Hidden)
; Hide the highlights dockpanel if it's in a window.
//window -h @ $+ $dockpanels(Highlight).wid
</pre>