up vote 1 down vote favorite
share [g+] share [fb]

I have an editor (emf editor). And I only want one of the tabs in the editor. If I do not add the other pages, I still see one tab in the tab selection. Can I hide the tab, so the user will not see it is a multipageeditor?

link|improve this question

14% accept rate
feedback

2 Answers

Ok... found it:

//the text must be empty so it will not be shown in the tab
setPageText(index, "");

//hide the tab
CTabFolder tabFolder = (CTabFolder)super.getContainer();
tabFolder.setSingle(true);
link|improve this answer
feedback

No, a MultiPageEditorPart is used for more than one page, so if you want one page just simply use and EditorPart.

I'm not sure what you are trying to do? You say you have 'an EMF editor'. Is this an editor of your own devising or are you trying to override something?

link|improve this answer
it was generated by emf. it is not that simple to change it to EditorPart... – Ido Oct 13 '09 at 7:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.