Arbortext IsoView > Programmer's Reference > Configuration Functions > Iso7ConfigTools
  
Iso7ConfigTools
This method allows you to configure the Toolbar. (See Toolbar.) It is the enhanced version of the ConfigTools and ConfigTools2 methods. (See ConfigTools and ConfigTools2.)
* 
The old method, ConfigTools2, should only be used to configure tools available in versions before 7.0.
Introduced first with Arbortext IsoView 7.0.
Syntax
Iso7ConfigToolsnToolmodenBtnSetnPopSetnSelectedToolbTopbRight
Parameters:
nToolMode
Sets the mode of the Arbortext IsoView tools as long. Allowed values are:
0
tools disabled
1
default tools
2
force all tools as popup
4
Toolbar invisible, select using ActiveTool
8
auto hide Redlining tools if not in Redlining mode
Use ActiveTool to switch between tools. (See ActiveTool.)
nBtnSet
Configures the available tools as long. (For allowed values, see Tool Set/Selection Constants – Iso7ConfigTools and ActiveTool.)
nPopSet
Configures the available tools in the popup menu as long. (For allowed values, see Tool Set/Selection Constants – Iso7ConfigTools and ActiveTool.)
nSelectedTool
Selects the active tool as long. (For allowed values, see Tool Set/Selection Constants – Iso7ConfigTools and ActiveTool.)
nTop
Defines if the Toolbar is anchored on the top of the window as boolean. The default value is false.
nRight
Defines if the Toolbar is right aligned as boolean. The default value is false.
// place tool bar with pan, zoom in, zoom out and
// print button, home, magnifier and globalview
// buttons as popup in the upper left corner and
// select pan tool as the active tooldocument.
ivx1.Iso7ConfigTools(1, 1+2+4+16, 32+64+128, 1, true, false);