namespace com.azkoss.excellite { using System; /// ///Fill pattern styles used for ///ExcelFillPattern.PatternStyle. /// /// ///

To see names of Microsoft Excel patterns, start Microsoft Excel and go to "Format" menu > "Cells..." submenu > ///"Patterns" tab > "Pattern" drop-down. When hovering over a pattern, Microsoft Excel name is displayed in tooltip ///text.

///

None fill pattern uses no colors.

///

Solid fill pattern uses ///ExcelFillPattern.PatternForegroundColor.

///

All other paterns use both ///ExcelFillPattern.PatternForegroundColor and ///ExcelFillPattern.PatternBackgroundColor

///
///ExcelFillPattern.PatternStyle ///ExcelFillPattern.PatternForegroundColor ///ExcelFillPattern.PatternBackgroundColor public enum FillPatternStyle { None, Solid, Gray50, Gray75, Gray25, HorizontalStripe, VerticalStripe, ReverseDiagonalStripe, DiagonalStripe, DiagonalCrosshatch, ThickDiagonalCrosshatch, ThinHorizontalStripe, ThinVerticalStripe, ThinReverseDiagonalStripe, ThinDiagonalStripe, ThinHorizontalCrosshatch, ThinDiagonalCrosshatch, Gray12, Gray6 } }