[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.swt] Display Excel in full screen mode

Hi All,

Does anybody has an idea how to hide Ribbons (new toolbars at the top) through OleAutomation. I tried it hard but couldnt achieve. I tried to at-least show in a full screen but no success
.......
.......
int[] rgdispid = application.getIDsOfNames(new String[]{"DisplayFullScreen"});
int dispIdMember = rgdispid[0];
Variant[] rgvarg = new Variant[1];
rgvarg[0] = new Variant(true);
boolean isX = application.setProperty(dispIdMember, rgvarg);
.......
.......


Can anybody help?

Regards