Property: DataPortal for BarManager
- Updated2024-09-12
- 1 minute(s) read
Bar Manager > Properties > Property: DataPortal for BarManager
Property: DataPortal for BarManager
Returns the Data Portal.
Set oDataPortal = Object.DataPortal
Object | BarManager Object with this property |
oDataPortal | DataPortal Returned object |
The following example displays the names of all bars in the Data Portal:
VBScript | Python |
Dim oMyBar For each oMyBar in BarManager.DataPortal.UsedBars Call MsgBoxDisp("Name: " & oMyBar.ID) Next