From d2e055acdd316a28665f28d19775c1845f91241e Mon Sep 17 00:00:00 2001 From: Mauricio Baeza Date: Fri, 19 Aug 2022 22:21:14 -0500 Subject: [PATCH] Refactory and documented Calc Sheets --- doc/content/es/_index.md | 6 + doc/content/es/calc/_index.md | 310 ++++ doc/content/es/calc/sheets/_index.md | 56 + doc/content/es/calc/sheets/events/_index.md | 48 + doc/content/es/calc/sheets/methods/_index.md | 101 ++ .../es/calc/sheets/properties/_index.md | 113 ++ doc/public/404.html | 16 +- doc/public/categories/index.html | 52 +- doc/public/es/404.html | 16 +- doc/public/es/application/index.html | 248 ++- doc/public/es/application/menus/index.html | 248 ++- .../es/application/shortcuts/index.html | 248 ++- doc/public/es/calc/index.html | 431 ++++- doc/public/es/calc/sheets/events/index.html | 1469 ++++++++++++++++ doc/public/es/calc/sheets/events/index.xml | 10 + doc/public/es/calc/sheets/index.html | 1464 ++++++++++++++++ doc/public/es/calc/sheets/index.xml | 10 + doc/public/es/calc/sheets/methods/index.html | 1503 ++++++++++++++++ doc/public/es/calc/sheets/methods/index.xml | 10 + .../es/calc/sheets/properties/index.html | 1512 +++++++++++++++++ .../es/calc/sheets/properties/index.xml | 10 + doc/public/es/categories/index.html | 248 ++- doc/public/es/dialog/index.html | 250 ++- doc/public/es/documents/index.html | 248 ++- doc/public/es/documents/methods/index.html | 248 ++- doc/public/es/documents/properties/index.html | 248 ++- doc/public/es/index.html | 252 ++- doc/public/es/index.json | 32 +- doc/public/es/installation/index.html | 248 ++- doc/public/es/sitemap.xml | 8 + doc/public/es/tags/index.html | 248 ++- doc/public/es/tools/dates_and_time/index.html | 248 ++- doc/public/es/tools/email/index.html | 248 ++- doc/public/es/tools/index.html | 248 ++- doc/public/es/tools/macros/index.html | 248 ++- doc/public/es/tools/messages/index.html | 248 ++- doc/public/es/tools/paths/index.html | 248 ++- doc/public/es/tools/threads/index.html | 248 ++- doc/public/es/tools/timer/index.html | 248 ++- doc/public/es/tools/url/index.html | 248 ++- doc/public/es/tools/utils/index.html | 248 ++- doc/public/es/tools_debug/index.html | 248 ++- doc/public/fr/404.html | 16 +- doc/public/fr/categories/index.html | 52 +- doc/public/fr/index.html | 52 +- doc/public/fr/tags/index.html | 52 +- doc/public/index.html | 52 +- doc/public/installation/index.html | 52 +- doc/public/pt/404.html | 16 +- doc/public/pt/categories/index.html | 52 +- doc/public/pt/index.html | 52 +- doc/public/pt/installation/index.html | 52 +- doc/public/pt/tags/index.html | 52 +- doc/public/tags/index.html | 52 +- doc/public/tools_debug/index.html | 52 +- source/easymacro/easycalc.py | 232 ++- source/easymacro/easydialog.py | 4 +- source/easymacro/easyevents.py | 67 + source/easymacro/easymain.py | 248 ++- source/easymacro/easytools.py | 247 +-- 60 files changed, 12838 insertions(+), 1203 deletions(-) create mode 100644 doc/content/es/calc/sheets/_index.md create mode 100644 doc/content/es/calc/sheets/events/_index.md create mode 100644 doc/content/es/calc/sheets/methods/_index.md create mode 100644 doc/content/es/calc/sheets/properties/_index.md create mode 100644 doc/public/es/calc/sheets/events/index.html create mode 100644 doc/public/es/calc/sheets/events/index.xml create mode 100644 doc/public/es/calc/sheets/index.html create mode 100644 doc/public/es/calc/sheets/index.xml create mode 100644 doc/public/es/calc/sheets/methods/index.html create mode 100644 doc/public/es/calc/sheets/methods/index.xml create mode 100644 doc/public/es/calc/sheets/properties/index.html create mode 100644 doc/public/es/calc/sheets/properties/index.xml diff --git a/doc/content/es/_index.md b/doc/content/es/_index.md index ddf2d5d..f42bf5d 100644 --- a/doc/content/es/_index.md +++ b/doc/content/es/_index.md @@ -8,6 +8,12 @@ Probablemente, será más feliz si la usa :) Puede utilizar **easymacro** con cualquier extensión o directamente en sus macros. +Aportaciones en Junas (G1) + +``` +A5DdXxCKPw3QKWVdDVs7CzkNugNUW1sHu5zDJFWxCU2h +``` + {{% notice note %}} Este proyecto esta en continuo desarrollo. {{% /notice %}} diff --git a/doc/content/es/calc/_index.md b/doc/content/es/calc/_index.md index 8e09b8b..9dc5ecb 100644 --- a/doc/content/es/calc/_index.md +++ b/doc/content/es/calc/_index.md @@ -9,4 +9,314 @@ weight = 6 ```python +doc = app.active +app.debug(doc.type) ``` + +#### Propiedades + +### headers + +Mostrar u ocultar encabezados de filas y columnas. + +```python +doc = app.active +app.msgbox(doc.headers) +doc.headers = not doc.headers +app.msgbox(doc.headers) +doc.headers = not doc.headers +``` + + +### tabs + +Mostrar u ocultar las pestañas de las hojas. + +```python +doc = app.active +app.msgbox(doc.tabs) +doc.tabs = not doc.tabs +app.msgbox(doc.tabs) +doc.tabs = not doc.tabs +``` + +### selection + +Devolver la selección activa. + +```python +doc = app.active +seleccion = doc.selection +app.debug(seleccion) +``` + +{{% notice warning %}} +**Cuidado**, la selección actual pueden ser muchas cosas diferentes. +{{% /notice %}} + + +### names + +Devolver una tupla con los nombres de todas las hojas. + +```python +doc = app.active +nombres = doc.names +app.debug(nombres) +``` + +### active + +Devuelve la hoja activa. + +```python +doc = app.active +hoja = doc.active +app.debug(hoja) +``` + + +#### Métodos + +### activate + +Activar hoja, argumento como objeto. + +```python +doc = app.active +hoja = doc[-1] +doc.activate(hoja) +``` + +Activar hoja por nombre. + +```python +doc = app.active +doc.activate('Hoja3') +``` + + +### select + +Seleccionar una celda o rango. + +```python +doc = app.active +cell = doc[0]['A1'] +doc.select(cell) +``` + +{{% notice tip %}} +**NO** es necesario seleccionar celdas o rangos para manipularlos. +{{% /notice %}} + + +### start_range_selection + +Permitir al usuario seleccionar un rango. Es necesario pasarle una clase con el nombre que prefiera (`Eventos` es recomendable) con dos métodos para procesar la captura como en el siguiente ejemplo: + +```python +class Eventos(): + + def __init__(self, doc): + self.doc = doc + + def range_selection_done(self, range_selection): + if range_selection: + app.debug(range_selection) + self.doc.remove_range_selection_listener() + return + + def range_selection_aborted(self): + self.doc.remove_range_selection_listener() + return + + +def main(): + doc = app.active + doc.start_range_selection(Eventos) + return +``` + +### insert + +Inserta una nueva hoja. + +```python +doc = app.active +hoja = doc.insert('OtraHoja') +``` + +Insertar varias hojas. Devolverá la última insertada. + +```python +nombres = ('Enero', 'Febrero', 'Marzo') +hoja = doc.insert(nombres) +app.debug(hoja) +``` + +Creando una nueva instancia y asignandola. + +```python + doc = app.active + doc['NuevaHoja'] = doc.new_sheet() +``` + +{{% notice warning %}} +Si la hoja existe, obtendrá un error, verifique siempre que no exista primero. +{{% /notice %}} + + +### move + +Mover hojas. + +Pasar la hoja como objeto, de forma predetermianda se mueve a la última posición. + +```python +doc = app.active +hoja = doc[0] +doc.move(hoja) +``` + +Pasar la hoja por nombre. + +```python +doc = app.active +doc.move('Hoja1') +``` + +Especificar la posición destino. + +```python +doc = app.active +hoja = doc[0] +doc.move(hoja, 2) +``` + + +### remove + +Eliminar hoja. + +```python +doc = app.active +sheet = doc[0] + +doc.remove(sheet) +``` + +Eliminar por nombre. + +```python +doc.remove('Hoja2') +``` + + +### copy + +Copiar hoja dentro del mismo documento. + +```python +doc = app.active +hoja = doc[0] + +doc.copy_sheet(hoja, 'Otra hoja') +``` + +Por nombre. + +```python +doc.copy_sheet('Hoja1', 'Hoja2') +``` + +Si no se establece el nuevo nombre, se generá de forma automática: `nombre + índice`. + +```python +doc.copy_sheet(hoja) +``` + + +### copy_from + +Copiar hojas de otro documento. Copiar con el mismo nombre. + +```python +doc = app.active +documento_origen = app.docs['Contactos.ods'] +nombre_origen = 'Nombres' + +doc.copy_from(documento_origen, nombre_origen) +``` + +Copiar con un nuevo nombre. + +```python +doc.copy_from(documento_origen, nombre_origen, 'NuevoNombre') +``` + +Si solo se establece el documento origen, se copian todas las hojas. + +```python +doc.copy_from(documento_origen) +``` + + +### sort + +Ordenar hojas en orden alfabetico. + +```python +doc = app.active +doc.sort() +``` + +Ordenar de forma inversa. + +```python +doc = app.active +doc.sort(True) +``` + + +### Eventos del documento. + +Obtener una tupla con los eventos soportados por el documento. + +```python +doc = app.active +nombres = doc.events.names +app.debug(nombres) +``` + +#### Asignar una macro a un evento. + +```python +def doc_on_focus(event): + app.debug('Documento activado...') + return + + +def main(): + doc = app.active + events = doc.events + if 'OnFocus' in events: + macro = {'library': 'test', 'name': 'doc_on_focus'} + events['OnFocus'] = macro + return +``` + +#### Eliminar la asignación del evento. + +```python +doc = app.active +doc.events['OnFocus'] = {} +``` + +O + +```python +doc = app.active +doc.events.remove('OnFocus') +``` + diff --git a/doc/content/es/calc/sheets/_index.md b/doc/content/es/calc/sheets/_index.md new file mode 100644 index 0000000..f1e1e83 --- /dev/null +++ b/doc/content/es/calc/sheets/_index.md @@ -0,0 +1,56 @@ ++++ +title = "Hojas" +weight = 1 ++++ + + +#### Trabajar con hojas + +### Referencia por índice + +```python +doc = app.active +hoja = doc[0] +app.debug(hoja.name) +``` + + +### Referencia por nombre + +```python +doc = app.active +hoja = doc['datos'] +app.debug(hoja.name) +``` + +### in + +Verificar por nombre si una hoja existe. + +```python +doc = app.active +existe = 'Hoja2' in doc +app.debug(existe) +``` + +### len + +Contar la cantidad de hojas en el documento. + +```python +doc = app.active +contar = len(doc) +app.debug(contar) +``` + +### iter + +Recorrer todas las hojas. + +```python + doc = app.active + for hoja in doc: + app.debug(hoja) +``` + + diff --git a/doc/content/es/calc/sheets/events/_index.md b/doc/content/es/calc/sheets/events/_index.md new file mode 100644 index 0000000..5d86f89 --- /dev/null +++ b/doc/content/es/calc/sheets/events/_index.md @@ -0,0 +1,48 @@ ++++ +title = "Eventos" +weight = 3 ++++ + + +#### Eventos de la hoja. + + +Obtener una tupla con los eventos soportados por la hoja. + +```python +hoja = app.active.active +nombres = hoja.events.names +app.debug(nombres) +``` + +#### Asignar una macro a un evento. + +```python +def on_select(source): + app.debug(source.AbsoluteName) + return + + +def main(): + doc = app.active + hoja = doc.active + + if 'OnSelect' in hoja.events: + macro = {'library': 'test', 'name': 'on_select'} + hoja.events['OnSelect'] = macro + + return +``` + +#### Eliminar la asignación del evento. + +```python +hoja.events['OnSelect'] = {} +``` + +O + +```python +hoja.events.remove('OnFocus') +``` + diff --git a/doc/content/es/calc/sheets/methods/_index.md b/doc/content/es/calc/sheets/methods/_index.md new file mode 100644 index 0000000..957d013 --- /dev/null +++ b/doc/content/es/calc/sheets/methods/_index.md @@ -0,0 +1,101 @@ ++++ +title = "Métodos" +weight = 2 ++++ + +### unprotect + +Quitar contraseña. + +```python +hoja = app.active.active + +hoja.password = 'siscaloburropanzon' +app.msgbox(hoja.is_protected) + +hoja.unprotect('siscaloburropanzon') +app.msgbox(hoja.is_protected) +``` + + +### activate + +Pasar el foco a la hoja. + +```python +doc = app.active +hoja = doc[-1] +hoja.activate() +``` + + +### move + +Mover a la última posición. + +```python +doc = app.active +hoja = doc[0] +hoja.move() +``` + +Mover a una posición especifica. + +```python +doc = app.active +hoja = doc[0] +hoja.move(3) +``` + +### remove + +Remover hoja. + +```python +sheet = app.active.active +sheet.remove() +``` + +{{% notice warning %}} +Siempre debe existir al menos una hoja. +{{% /notice %}} + + +### copy + +{{% notice tip %}} +Siempre valida que no exista el nuevo nombre. +{{% /notice %}} + +```python +doc = app.active +hoja = doc[0] + +nuevo_nombre = f'{hoja.name}_2' +if not nuevo_nombre in doc: + hoja.copy(nuevo_nombre) +``` + +Si no se establece el nuevo nombre, se generá de forma automática: `nombre + índice`. + +```python +hoja.copy() +``` + +### copy_to + +Copiar la hoja a otro documento. Se usa el mismo nombre. + +```python +doc = app.active +hoja = doc.active + +documento_nuevo = app.docs.new() +hoja.copy_to(documento_nuevo) +``` + +Usar un nuevo nombre. + +```python +hoja.copy_to(documento_nuevo, 'Nuevo nombre') +``` diff --git a/doc/content/es/calc/sheets/properties/_index.md b/doc/content/es/calc/sheets/properties/_index.md new file mode 100644 index 0000000..2e94532 --- /dev/null +++ b/doc/content/es/calc/sheets/properties/_index.md @@ -0,0 +1,113 @@ ++++ +title = "Propiedades" +weight = 1 ++++ + +### doc + +Devuelve al documento Calc donde esta la hoja. + +```python +doc = app.active +hoja = doc.active + +doc = hoja.doc +app.debug(doc.title) +``` + + +### name + +Nombre visible y editable por el usuario. + +```python +doc = app.active +hoja = doc.active + +app.msgbox(hoja.name) +hoja.name = 'Nuevo Nombre' +app.msgbox(hoja.name) +``` + +### code_name + +Nombre editable y accesible solo por código. + +```python +doc = app.active +hoja = doc.active + +app.msgbox(hoja.code_name) +hoja.code_name = 'datos' +app.msgbox(hoja.code_name) +``` + + +### visible + +Muestra u oculta la hoja + +```python +hoja = app.active.active + +app.msgbox(hoja.visible) +hoja.visible = not hoja.visible +app.msgbox(hoja.visible) +hoja.visible = not hoja.visible +``` + +{{% notice tip %}} +Solo funcionará con dos o más hojas, por que debe haber al menos una visible. +{{% /notice %}} + + +### color + +Color de la pestaña. + +```python +hoja = app.active.active +app.msgbox(hoja.color) + +hoja.color = 'red' +app.msgbox(hoja.color) + +# RGB +hoja.color = (125, 200, 10) +app.msgbox(hoja.color) +``` + + +### used_area + +Referencia al área de usuario actual. + +```python +hoja = app.active.active + +rango = hoja.used_area +app.debug(rango) +``` + + +### is_protected + +Devuelve verdadero (True) si la hoja esta protegida + +```python +hoja = app.active.active + +esta_protegida = hoja.is_protected +app.debug(esta_protegida) +``` + + +### password + +Establecer una contraseña. + +```python +hoja = app.active.active +hoja.password = 'siscaloburropanzon' +app.debug(hoja.is_protected) +``` diff --git a/doc/public/404.html b/doc/public/404.html index ac39184..69d3091 100644 --- a/doc/public/404.html +++ b/doc/public/404.html @@ -9,15 +9,15 @@ 404 Page not found - - - - - - - + + + + + + + - + + + + + + + + + +
+
+
+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ +
+ +
+ +
+ +

+ + Eventos +

+ + + + + + +

Eventos de la hoja.

+

Obtener una tupla con los eventos soportados por la hoja.

+
hoja = app.active.active
+nombres = hoja.events.names
+app.debug(nombres)
+

Asignar una macro a un evento.

+
def on_select(source):
+    app.debug(source.AbsoluteName)
+    return
+
+
+def main():
+    doc = app.active
+    hoja = doc.active
+
+    if 'OnSelect' in hoja.events:
+        macro = {'library': 'test', 'name': 'on_select'}
+        hoja.events['OnSelect'] = macro
+
+    return
+

Eliminar la asignación del evento.

+
hoja.events['OnSelect'] = {}
+

O

+
hoja.events.remove('OnFocus')
+
+ + + + +
+ +
+ + +
+ + +
+ + + +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + diff --git a/doc/public/es/calc/sheets/events/index.xml b/doc/public/es/calc/sheets/events/index.xml new file mode 100644 index 0000000..c0fb17b --- /dev/null +++ b/doc/public/es/calc/sheets/events/index.xml @@ -0,0 +1,10 @@ + + + + Eventos on Documentación para EasyMacro + https://doc.cuates.net/easymacro/es/calc/sheets/events/ + Recent content in Eventos on Documentación para EasyMacro + Hugo -- gohugo.io + en-us + + diff --git a/doc/public/es/calc/sheets/index.html b/doc/public/es/calc/sheets/index.html new file mode 100644 index 0000000..24252dd --- /dev/null +++ b/doc/public/es/calc/sheets/index.html @@ -0,0 +1,1464 @@ + + + + + + + + + + + + Hojas :: Documentación para EasyMacro + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ +
+ +
+ +
+ +

+ + Hojas +

+ + + + + + +

Trabajar con hojas

+

Referencia por índice

+
doc = app.active
+hoja = doc[0]
+app.debug(hoja.name)
+

Referencia por nombre

+
doc = app.active
+hoja = doc['datos']
+app.debug(hoja.name)
+

in

+

Verificar por nombre si una hoja existe.

+
doc = app.active
+existe = 'Hoja2' in doc
+app.debug(existe)
+

len

+

Contar la cantidad de hojas en el documento.

+
doc = app.active
+contar = len(doc)
+app.debug(contar)
+

iter

+

Recorrer todas las hojas.

+
    doc = app.active
+    for hoja in doc:
+        app.debug(hoja)
+
+ + + + +
+ +
+ + +
+ + +
+ + + +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + diff --git a/doc/public/es/calc/sheets/index.xml b/doc/public/es/calc/sheets/index.xml new file mode 100644 index 0000000..adbdf5b --- /dev/null +++ b/doc/public/es/calc/sheets/index.xml @@ -0,0 +1,10 @@ + + + + Hojas on Documentación para EasyMacro + https://doc.cuates.net/easymacro/es/calc/sheets/ + Recent content in Hojas on Documentación para EasyMacro + Hugo -- gohugo.io + en-us + + diff --git a/doc/public/es/calc/sheets/methods/index.html b/doc/public/es/calc/sheets/methods/index.html new file mode 100644 index 0000000..d9f66e0 --- /dev/null +++ b/doc/public/es/calc/sheets/methods/index.html @@ -0,0 +1,1503 @@ + + + + + + + + + + + + Métodos :: Documentación para EasyMacro + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ +
+ +
+ +
+ +

+ + Métodos +

+ + + + + + +

unprotect

+

Quitar contraseña.

+
hoja = app.active.active
+
+hoja.password = 'siscaloburropanzon'
+app.msgbox(hoja.is_protected)
+
+hoja.unprotect('siscaloburropanzon')
+app.msgbox(hoja.is_protected)
+

activate

+

Pasar el foco a la hoja.

+
doc = app.active
+hoja = doc[-1]
+hoja.activate()
+

move

+

Mover a la última posición.

+
doc = app.active
+hoja = doc[0]
+hoja.move()
+

Mover a una posición especifica.

+
doc = app.active
+hoja = doc[0]
+hoja.move(3)
+

remove

+

Remover hoja.

+
sheet = app.active.active
+sheet.remove()
+
+

Siempre debe existir al menos una hoja.

+
+ +

copy

+ +

Siempre valida que no exista el nuevo nombre.

+
+ +
doc = app.active
+hoja = doc[0]
+
+nuevo_nombre = f'{hoja.name}_2'
+if not nuevo_nombre in doc:
+    hoja.copy(nuevo_nombre)
+

Si no se establece el nuevo nombre, se generá de forma automática: nombre + índice.

+
hoja.copy()
+

copy_to

+

Copiar la hoja a otro documento. Se usa el mismo nombre.

+
doc = app.active
+hoja = doc.active
+
+documento_nuevo = app.docs.new()
+hoja.copy_to(documento_nuevo)
+

Usar un nuevo nombre.

+
hoja.copy_to(documento_nuevo, 'Nuevo nombre')
+
+ + + + +
+ +
+ + +
+ + +
+ + + +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + diff --git a/doc/public/es/calc/sheets/methods/index.xml b/doc/public/es/calc/sheets/methods/index.xml new file mode 100644 index 0000000..71bcaed --- /dev/null +++ b/doc/public/es/calc/sheets/methods/index.xml @@ -0,0 +1,10 @@ + + + + Métodos on Documentación para EasyMacro + https://doc.cuates.net/easymacro/es/calc/sheets/methods/ + Recent content in Métodos on Documentación para EasyMacro + Hugo -- gohugo.io + en-us + + diff --git a/doc/public/es/calc/sheets/properties/index.html b/doc/public/es/calc/sheets/properties/index.html new file mode 100644 index 0000000..8f28343 --- /dev/null +++ b/doc/public/es/calc/sheets/properties/index.html @@ -0,0 +1,1512 @@ + + + + + + + + + + + + Propiedades :: Documentación para EasyMacro + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ +
+ +
+ +
+ +

+ + Propiedades +

+ + + + + + +

doc

+

Devuelve al documento Calc donde esta la hoja.

+
doc = app.active
+hoja = doc.active
+
+doc = hoja.doc
+app.debug(doc.title)
+

name

+

Nombre visible y editable por el usuario.

+
doc = app.active
+hoja = doc.active
+
+app.msgbox(hoja.name)
+hoja.name = 'Nuevo Nombre'
+app.msgbox(hoja.name)
+

code_name

+

Nombre editable y accesible solo por código.

+
doc = app.active
+hoja = doc.active
+
+app.msgbox(hoja.code_name)
+hoja.code_name = 'datos'
+app.msgbox(hoja.code_name)
+

visible

+

Muestra u oculta la hoja

+
hoja = app.active.active
+
+app.msgbox(hoja.visible)
+hoja.visible = not hoja.visible
+app.msgbox(hoja.visible)
+hoja.visible = not hoja.visible
+
+

Solo funcionará con dos o más hojas, por que debe haber al menos una visible.

+
+ +

color

+

Color de la pestaña.

+
hoja = app.active.active
+app.msgbox(hoja.color)
+
+hoja.color = 'red'
+app.msgbox(hoja.color)
+
+# RGB
+hoja.color = (125, 200, 10)
+app.msgbox(hoja.color)
+

used_area

+

Referencia al área de usuario actual.

+
hoja = app.active.active
+
+rango = hoja.used_area
+app.debug(rango)
+

is_protected

+

Devuelve verdadero (True) si la hoja esta protegida

+
hoja = app.active.active
+
+esta_protegida = hoja.is_protected
+app.debug(esta_protegida)
+

password

+

Establecer una contraseña.

+
hoja = app.active.active
+hoja.password = 'siscaloburropanzon'
+app.debug(hoja.is_protected)
+
+ + + + +
+ +
+ + +
+ + +
+ + + +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + diff --git a/doc/public/es/calc/sheets/properties/index.xml b/doc/public/es/calc/sheets/properties/index.xml new file mode 100644 index 0000000..1af3c81 --- /dev/null +++ b/doc/public/es/calc/sheets/properties/index.xml @@ -0,0 +1,10 @@ + + + + Propiedades on Documentación para EasyMacro + https://doc.cuates.net/easymacro/es/calc/sheets/properties/ + Recent content in Propiedades on Documentación para EasyMacro + Hugo -- gohugo.io + en-us + + diff --git a/doc/public/es/categories/index.html b/doc/public/es/categories/index.html index be0ece1..e11bcef 100644 --- a/doc/public/es/categories/index.html +++ b/doc/public/es/categories/index.html @@ -12,22 +12,22 @@ Categories :: Documentación para EasyMacro - - - - - - - - - - + + + + + + + + + + - + - + - +