Opens a palette from file
Syntax:
Function Open(ByVal FileName As String) As Palette
Parameters:
Name Type Description
FileName
String
Remarks:
The Open method opens an existing custom color palette.
Examples:
The following VBA example opens the specified palette from file.
Sub Test()
Palettes.Open Application.SetupPath & "Custom\coreldrw.xml" 
End Sub