public String getCellNameWithSpaces(){
return getController().createStringWithSpace(getCellName(), 15);
}
public void setSheetName(){
SingleReference ref = (SingleReference)m_cellToken.Data;
XSpreadsheet sheet = m_Controller.getSheetByIndex(ref.Sheet);
XNamed xNamed = (XNamed)UnoRuntime.queryInterface(XNamed.class, sheet);
m_sheetName = xNamed.getName();
}