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}{signature:
}
Signature
vb.net
vb.net
Public Function GetColorAt(ByVal index As Integer) As Color
{signature}
{parameters}
{param:index}The 0\-based index of the color to return. Must be between 0 and 55.{param}
{returns}The color at the specified index.{returns}
{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.
{remarks}
{example}{code:csharp|title=C#}
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} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim clr As Color = pal.GetColorAt(4)
{code} {example}