Hiding a Pane |
Post Reply |
Author | |
Shawshank
Senior Member Joined: 16 October 2005 Status: Offline Points: 117 |
Post Options
Thanks(0)
Posted: 06 February 2006 at 11:39pm |
I'm attempting to hide a Pane which I have some other controls on. I've tried the following: DockingPaneManager.HidePane Pane1 Pane1.Hide = True Pane1.Hide None of the options truly hide the Pane. Instead, it just appears as a strip docked down the left side. I'd prefer to hide the Pane completely. Is that possible? |
|
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
To "minimize" the pane:
Set A = DockingPaneManager.FindPane(1) A.Selected = True A.Hidden = True To "remove" the pane: Set A = DockingPaneManager.FindPane(1) A.Close |
|
John31
Groupie Joined: 08 December 2005 Location: United States Status: Offline Points: 70 |
Post Options
Thanks(0)
|
How do you make the pane appear again. I am trying DockingPane1.ShowPane A but it has no effect.
|
|
Regards
John Layton |
|
SuperMario
Admin Group Joined: 14 February 2004 Status: Offline Points: 18057 |
Post Options
Thanks(0)
|
DockingPane1.ShowPane A.Id
try using the id of the pane |
|
John31
Groupie Joined: 08 December 2005 Location: United States Status: Offline Points: 70 |
Post Options
Thanks(0)
|
Well that was obvious if you read the syntax correctly!!!! Thanks
|
|
Regards
John Layton |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |