Macro/Guida a Python/Calc/Intervalli di celle

    From The Document Foundation Wiki
    This page is a translated version of the page Macros/Python Guide/Calc/Calc ranges and the translation is 100% complete.

    ⇐ Ritorna alla Guida a Python - Calc

    Other languages:

    Intervalli di celle

    ATTENZIONE: Copiate o importate la funzione msgbox dalle Funzioni utili

    Ottenere una cella in base al nome

    doc = XSCRIPTCONTEXT.getDocument()
        sheet = doc.CurrentController.ActiveSheet
        cell = sheet['A1']
        msgbox(cell.AbsoluteName)

    Ottenere una cella in base alla posizione

    doc = XSCRIPTCONTEXT.getDocument()
        sheet = doc.CurrentController.ActiveSheet
        # Cell C6
        row = 5
        column = 2
        cell = sheet[row,column]
        msgbox(cell.AbsoluteName)

    ⇐ Ritorna alla Guida a Python - Calc