API Documentation > CorelDRAW > 2025-v26 > Palette > IVGPalette
Palette.Save method
Saves the palette
Syntax:
Sub Save()
Remarks:
The Save method saves the changes to a color palette.
Examples:
The following VBA example adds a brown color to the default palette and saves the changed palette.
Sub Test()
Dim c As New Color
c.RGBAssign 128, 0, 0
ActivePalette.InsertColor 1, c
ActivePalette.Save 
End Sub