I start learning uno-python. I want to convert this java code to python:
// example for use of enum types
xCellProps.setPropertyValue("VertJustify",com.sun.star.table.CellVertJustify.TOP);
the code from DevGuide: Working with a Spreadsheet Document
my try to convert java example to python here:
import uno, unohelper
from com.sun.star.table.CellVertJustify import TOP
def createCacle ():
try:
ctx = uno.getComponentContext()
smgr = ctx.ServiceManager
desktop = smgr.createInstanceWithContext('com.sun.star.frame.Desktop', ctx)
calc = desktop.loadComponentFromURL("private:factory/scalc", "_blank", 0, ())
sheets = calc.getSheets()
sheets.insertNewByName("MySheet", 0)
sheet = sheets.getByName("MySheet")
xCell = sheet.getCellByPosition(0, 0)
xCell.setValue(21)
xCell = sheet.getCellByPosition(0, 1)
xCell.setValue(21)
xCell = sheet.getCellByPosition(0, 2)
xCell.setFormula("=sum(A1:A2)")
xCell.setPropertyValue("CellStyle", "Result")
xCell.VertJustify = com.sun.star.table.CellVertJustify.TOP
cont = calc.getCurrentController()
cont.setActiveSheet(sheet)
except Exception,e:
print str(e)
return None
both:
xCell.setPropertyValue(uno.Enum( "com.sun.star.table.CellVertJustify", "TOP"))
xCell.VertJustify = com.sun.star.table.CellVertJustify.TOP
don't work for me. Any help?
xCell.VertJustify = TOP– OMLX Aug 1 '11 at 8:42