ISDBUIDockablePanel::IsNew

From MediaMonkey Wiki
Revision as of 19:12, 23 March 2007 by Jiri (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

CoClass SDBUIDockablePanel, Interface ISDBUIDockablePanel

Property Get IsNew As Boolean


Property description

Whether this panel was created for the first time. (the other case is that the panel already existed in the previous session and its size/position was saved).

Example code

Set Pnl = UI.NewDockablePersistentPanel("TestingPanel")
If Pnl.IsNew Then
  Pnl.DockedTo = 2
  Pnl.Common.Width = 250
End If