Color
Overview
Color is a class in Aspose.Slides FOSS for Python.
Represents an ARGB color, equivalent to System.Drawing.Color.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
r | int | Read | Represents the red channel value of the color (0-255) |
g | int | Read | Represents the green channel value of the color (0-255) |
b | int | Read | Represents the blue channel value of the color (0-255) |
a | int | Read | Represents the alpha (transparency) channel value of the color (0-255) |
Methods
| Signature | Description |
|---|---|
__init__(a: int, r: int, g: int, b: int) | |
from_argb() → Color | Create a Color from ARGB components. |