easymacro/source/easymacro/constants.py

24 lines
470 B
Python

#!/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
from .easyuno import BitmapMode, CellContentType, FillStyle, LineStyle
__all__ = [
'ALL',
'ONLY_DATA',
'BitmapMode',
'CellContentType',
'FillStyle',
'LineStyle',
]
# ~ VALUE, DATETIME, STRING, ANNOTATION, FORMULA
ONLY_DATA = 31
ALL = 1023
SECONDS_DAY = 86400