to_argb method
Leave feedback
On this page
Gets the 32-bit ARGB value of this Color structure.
def to_argb(self):
...
Returns: int: The 32-bit ARGB value of this Color structure.
from groupdocs.watermark import Watermarker
from groupdocs.watermark.contents.diagram import DiagramContent
with Watermarker("diagram.vsdx") as watermarker:
content = watermarker.get_content(DiagramContent)
argb = content.header_footer.text_color.to_argb()
print(argb)
- class
Color
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.