Return docked state of specified toolbar
| 1023 | // Return docked state of specified toolbar |
| 1024 | // |
| 1025 | bool ToolManager::IsDocked(Identifier type) const |
| 1026 | { |
| 1027 | if (auto pBar = GetToolBar(type)) |
| 1028 | return pBar->IsDocked(); |
| 1029 | return false; |
| 1030 | } |
| 1031 | |
| 1032 | // |
| 1033 | // Returns the visibility of the specified toolbar |