Property: FilePath for BarManagerUnattached
- Updated2024-09-12
- 1 minute(s) read
Bar Manager > Properties > Property: FilePath for BarManagerUnattached
Property: FilePath for BarManagerUnattached
Returns the absolute path to the current bar definition of an additional bar manager, which is not used for the bar display in DIAdem.
![]() |
Note If you do not have your own bar definition, this property contains the name of the desktop folder. |
Object.FilePath
Object | BarManagerUnattached Object with this property |
Object.FilePath | String with read access |
The following example displays the path for the current bar definition:
VBScript | Python |
Dim oMyBarUnattached Set oMyBarUnattached = BarManager.Create("") Call oMyBarUnattached.Load("MyBar.bdn") Call MsgBoxDisp("File path: " & oMyBarUnattached.FilePath)