Description
Returns whether or not the color is stored in Excel's default color palette. For .xlsx files, returns whether the color has been retrieved from the legacy palette. The only way to retrieve colors from the legacy palette is by using the Palette.SetColorAt or Palette.GetColorAt methods.C#
public boolean IsPaletteColor{ get ; } |
vb.net
Public ReadOnly Property IsPaletteColor() As Boolean |
Examples
C#
bool paletteColor = clr.IsPaletteColor; |
vb.net
Dim paletteColor As Boolean = clr.IsPaletteColor |