Returns RgbColor class instance constructed from all 4 channels (alpha, red, green, and blue).
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Shared Function FromArgb ( _ alpha As Byte, _ red As Byte, _ green As Byte, _ blue As Byte _ ) As RgbColor
Type: System.Byte
Alpha channel value.Type: System.Byte
Red channel value.Type: System.Byte
Green channel value.Type: System.Byte
Blue channel value.Dim rgb As Aurigma.GraphicsMill.RgbColor = _ Aurigma.GraphicsMill.Color.FromArgb(120, 255, 0, 0)
Aurigma.GraphicsMill.RgbColor rgb = Aurigma.GraphicsMill.Color.FromArgb(120, 255, 0, 0);