Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

Returns the color at the specified 0-based index within the Palette.

Signature
C#
C#
 public Color GetColorAt(int index)
Signature
vb.net
vb.net
Public Function GetColorAt(ByVal index As Integer) As Color
Parameters
Param
index
index

The 0-based index of the color to return. Must be between 0 and 55.

Returns

The color at the specified index.

Remarks

For .xlsx files, this will return a color from the legacy palette. Colors in the legacy palette will be used when opening the file in Excel 2003.

Example
Code Block
csharp
csharp
titleC#
Color clr = pal.GetColorAt(4);
Code Block
vb.net
vb.net
titlevb.net
Dim clr As Color = pal.GetColorAt(4)