Macros/Guía de Python/Calc/Rangos de celdas
< Macros | Python Guide | Calc
TDF LibreOffice en español Document Liberation Project Blogs comunitarios Weblate Nextcloud Redmine Preguntas y respuestas Donar
⇐ Volver a la Guía de Python, Calc
Rangos
PRECAUCIÓN: Copie o importe la función msgbox
que se describe en Funciones útiles
Obtener una celda por nombre
doc = XSCRIPTCONTEXT.getDocument()
sheet = doc.CurrentController.ActiveSheet
cell = sheet['A1']
msgbox(cell.AbsoluteName)
Obtener una celda por posición.
doc = XSCRIPTCONTEXT.getDocument()
sheet = doc.CurrentController.ActiveSheet
# Cell C6
row = 5
column = 2
cell = sheet[row,column]
msgbox(cell.AbsoluteName)