This is a migrated thread and some comments may be shown as answers.

Tab close from code

1 Answer 82 Views
Dock
This is a migrated thread and some comments may be shown as answers.
maydaytx
Top achievements
Rank 1
maydaytx asked on 12 Sep 2007, 08:36 PM
I am using the document manager in TDI mode.  I can't figure out how to close a tab from code. This is kind of what I'm looking for:

foreach (DocumentPane pane in MainDockingManager.PrimarySite.ManagedDockables)
{
    pane.Close();
}

Love,

~DuckLeg
 |
 |
/|\

1 Answer, 1 is accepted

Sort by
0
Julian Benkov
Telerik team
answered on 13 Sep 2007, 02:05 PM
Hi Brandon,

The right way to close documents is to use the DockingManager functions:

1) Solution 1:

foreach(DocumentPane pane in dockingManager1.Documents) 
    dockingManager1.CloseDocument(pane); 

2) Solution 2:
 
dockingManager1.CloseAllDocuments(); 

I hope this helps.
 

Sincerely yours,
Julian Benkov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Dock
Asked by
maydaytx
Top achievements
Rank 1
Answers by
Julian Benkov
Telerik team
Share this question
or