Programming with Reflection
SetToolbarMode method
Syntax object.SetToolbarMode ToolbarName, Mode
Sets the docking mode for a Reflection toolbar. For example, this command docks the Standard toolbar at the bottom of the terminal window:
Session.SetToolbarMode "Standard", rcBottomBar
ToolbarName Argument type: String
Required
The name of the toolbar you want to position. Toolbar names are not case sensitive. The default toolbar names are:
Standard
File Transfer
Visual Basic
Setup
Use NewToolbar to create a new toolbar.
Mode Argument Type: Enumeration
Required
Specifies the docking position for this toolbar.
rcBottomBar The toolbar is attached to the bottom margin of the terminal window.
rcFloating The toolbar is free floating. The toolbar can be positioned with the mouse or with the SetToolbarPosition method.
rcLeftBar The toolbar is attached to the left margin of the terminal window.
rcRightBar The toolbar is attached to the right margin of the terminal window.
rcTopBar The toolbar is attached to the top margin of the terminal window.