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
| Name | Type | Access | Description |
|---|---|---|---|
r | int | Read | Gets the r. |
g | int | Read | Gets the g. |
b | int | Read | Gets the b. |
a | int | Read | Gets the a. |
Methods
| Signature | Description |
|---|---|
__init__(a: int, r: int, g: int, b: int) | |
from_argb() → Color | Create a Color from ARGB components. |