Exports the palette into array of RgbColor values.
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Function Export As RgbColor()
public RgbColor[] Export()
Dim colors As Aurigma.GraphicsMill.RgbColor() = palette.Export()
For Each color As Aurigma.GraphicsMill.RgbColor In colors
Console.WriteLine("A: " & color.A & " R: " & color.R & " G: " & color.G & " B: " & color.B)
Next
Aurigma.GraphicsMill.RgbColor[] colors = palette.Export();
foreach (Aurigma.GraphicsMill.RgbColor color in colors)
{
Console.WriteLine("A: " + color.A + " R: " + color.R + " G: " + color.G + " B: " + color.B);
}