[]
Creates the ARGB color.
public static SchemeColor CreateArgbColor(int argb)
Public Shared Function CreateArgbColor(argb As Integer) As SchemeColor
Type | Name | Description |
---|---|---|
int | argb | The ARGB color components. |
Type | Description |
---|---|
SchemeColor | A SchemeColor value represents the color |
Creates the ARGB color.
public static SchemeColor CreateArgbColor(int red, int green, int blue, byte alpha = 255)
Public Shared Function CreateArgbColor(red As Integer, green As Integer, blue As Integer, Optional alpha As Byte = 255) As SchemeColor
Type | Name | Description |
---|---|---|
int | red | The red color component. |
int | green | The green color component. |
int | blue | The blue color component. |
byte | alpha | The alpha color component. |
Type | Description |
---|---|
SchemeColor | A SchemeColor value represents the color |