I have a Viewpart in Eclipse RCP which I am detaching using inbuild method. Now I have a button on that Detached ViewPart and Upon Clicking it window Size of Windows (in Which detached Viewpart is there) should increase but I can't find any API for the Same. Can Anyone Please Help ?
There is this one Question I found but still don't know how to do this Resize Eclipse RCP Part
You just need to set the size of the
Shellcontaining the part.For example, this command handler increases the size of the shell containing the active part by 100 pixels in each direction:
Note: The question you linked to is talking about the new 'e4' API. Since you are asking about
ViewPartyou are using the 3.x compatibility API.