Property: Count for Panels
- Updated2024-09-12
- 1 minute(s) read
Bar Manager > Properties > Property: Count for Panels
Property: Count for Panels
Returns the number of DIAdem panels.
Object.Count
Object | Panels Object with this property |
Object.Count | LongInteger with read access |
The following example displays the names of all DIAdem panels:
VBScript | Python |
Dim i For i = 1 To BarManager.Panels.Count Call MsgBoxDisp(BarManager.Panels(i).ID) Next