Color

Overview

Color is a class in Aspose.Slides FOSS for Python.

Represents an ARGB color, equivalent to System.Drawing.Color.

This class provides 2 methods for working with Color objects in Python programs. Available methods include: __init__, from_argb. All public members are accessible to any Python application after installing the Aspose.Slides FOSS for Python package. Properties: a, b, g, r.

Properties

NameTypeAccessDescription
rintReadGets the r.
gintReadGets the g.
bintReadGets the b.
aintReadGets the a.

Methods

SignatureDescription
__init__(a: int, r: int, g: int, b: int)
from_argb()ColorCreate a Color from ARGB components.

See Also