easymacro/source/easymacro/constants.py

24 lines
470 B
Python
Raw Normal View History

2023-12-17 23:57:30 -06:00
#!/usr/bin/env python
# ~ Is de sum of:
# ~ https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star_1_1sheet_1_1CellFlags.html
from com.sun.star.sheet import CellFlags
2024-01-07 21:37:52 -06:00
from .easyuno import BitmapMode, CellContentType, FillStyle, LineStyle
2024-01-02 19:46:51 -06:00
__all__ = [
'ALL',
'ONLY_DATA',
'BitmapMode',
2024-01-07 21:37:52 -06:00
'CellContentType',
2024-01-02 19:46:51 -06:00
'FillStyle',
'LineStyle',
]
2024-01-07 21:37:52 -06:00
# ~ VALUE, DATETIME, STRING, ANNOTATION, FORMULA
2023-12-17 23:57:30 -06:00
ONLY_DATA = 31
ALL = 1023
2024-01-07 21:37:52 -06:00
SECONDS_DAY = 86400