[]
Gets or sets the color of the pattern for the represented interior.
Color PatternColor { get; set; }
Property PatternColor As Color
IRange cell = worksheet.Range["A1"];
cell.Interior.Pattern = Pattern.LightDown;
cell.Interior.PatternColor = Color.White;
Color patternColor = cell.Interior.PatternColor;