API Documentation > CorelDRAW > 2025-v26 > Palette > IVGPalette
Palette.Name property
Gets or sets the color palette name; palette name can only be set if it is a custom palette
Syntax:
Property Get Name() As String
Property Let Name(ByVal Value As String)
Remarks:
The Name property returns or specifies the name of a palette. The palette name can be set with the Name property only if the palette is a custom palette.
Examples:
The following VBA example displays the name of all open palettes.
Sub Test()
Dim s As String
Dim pal As Palette
s = "Open palettes:" & vbCr
For Each pal In Palettes
  s = s & vbCr & pal.Name
Next pal
MsgBox s 
End Sub