Constructor. Creates an RGB color with color components r, g, and b and alpha-shading component a correspondingly.
Public Sub New(
blue As byte,
green As byte,
red As byte,
alpha As byte
)
public PixelBGRA32(
byte blue,
byte green,
byte red,
byte alpha
);
| Parameters | Description |
|---|---|
| byte blue | Input color blue component |
| byte green | Input color green component |
| byte red | Input color red component |
| byte alpha | Input color alpha-shading component |
PixelBGRA32 Structure, Autodesk.AutoCAD.GraphicsInterface Namespace