easymacro/doc/content/es/calc/ranges/properties/_index.md

47 lines
568 B
Markdown

+++
title = "Propiedades"
weight = 1
+++
# names
Devolver las direcciones de los rangos.
```python
doc = app.active
rangos = doc.selection
nombres = rangos.names
app.debug(nombres)
```
### data
Devolver y establecer datos.
```python
doc = app.active
rangos = doc.selection
datos = rangos.data
app.debug(datos)
rangos.data = datos
```
{{% notice warning %}}
Cada rango debe tener exactamente el mismo tamaño.
{{% /notice %}}
### style
Establecer el estilo de todos los rangos.
```python
doc = app.active
rangos = doc.selection
rangos.style = 'Good'
```