return null;
}
public void initializeBasicControlValues(){
Control oLabelControl = new Control(this, SOLABEL, new Point(), new Size());
XDevice xDevice = (XDevice) UnoRuntime.queryInterface(XDevice.class, oLabelControl.xWindowPeer);
iXPixelFactor = (int) (100000/xDevice.getInfo().PixelPerMeterX);
iYPixelFactor = (int) (100000/xDevice.getInfo().PixelPerMeterY);
nLabelHeight = (oLabelControl.getPreferredHeight("The quick brown fox...") + 1);
Control oTextControl = new Control(this, SOTEXTBOX, new Point(), new Size());
nDBRefHeight = (oTextControl.getPreferredHeight("The quick brown fox...") + 1);
BasicLabelDiffHeight = (nDBRefHeight - nLabelHeight)/2;
xDrawPage.remove(oLabelControl.xShape);
xDrawPage.remove(oTextControl.xShape);
}