You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
727 B
C#

9 months ago
namespace com.azkoss.excellite
{
using System;
internal class CellStyleDataIndexes
{
// Methods
public CellStyleDataIndexes()
{
this.CellStyleIndex = -1;
this.FontIndex = -1;
this.PatternBackgroundColorIndex = -1;
this.PatternForegroundColorIndex = -1;
this.BorderColorIndex = new int[] { -1, -1, -1, -1, -1 } ;
this.NumberFormatIndex = -1;
}
// Fields
public int[] BorderColorIndex;
public int CellStyleIndex;
public int FontIndex;
public int NumberFormatIndex;
public int PatternBackgroundColorIndex;
public int PatternForegroundColorIndex;
}
}