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.

47 lines
1.9 KiB
C#

namespace com.azkoss.excellite
{
using System;
///<summary>
///Fill pattern styles used for
///<see cref="com.azkoss.excellite.ExcelFillPattern.PatternStyle">ExcelFillPattern.PatternStyle</see>.
///</summary>
///<remarks>
///<p>To see names of Microsoft Excel patterns, start Microsoft Excel and go to "Format" menu &gt; "Cells..." submenu &gt;
///"Patterns" tab &gt; "Pattern" drop-down. When hovering over a pattern, Microsoft Excel name is displayed in tooltip
///text.</p>
///<p><b>None</b> fill pattern uses no colors.</p>
///<p><b>Solid</b> fill pattern uses <see cref="com.azkoss.excellite.ExcelFillPattern.PatternForegroundColor">
///ExcelFillPattern.PatternForegroundColor</see>.</p>
///<p>All other paterns use both <see cref="com.azkoss.excellite.ExcelFillPattern.PatternForegroundColor">
///ExcelFillPattern.PatternForegroundColor</see> and
///<see cref="com.azkoss.excellite.ExcelFillPattern.PatternBackgroundColor">ExcelFillPattern.PatternBackgroundColor</see></p>
///</remarks>
///<seealso cref="com.azkoss.excellite.ExcelFillPattern.PatternStyle">ExcelFillPattern.PatternStyle</seealso>
///<seealso cref="com.azkoss.excellite.ExcelFillPattern.PatternForegroundColor">ExcelFillPattern.PatternForegroundColor</seealso>
///<seealso cref="com.azkoss.excellite.ExcelFillPattern.PatternBackgroundColor">ExcelFillPattern.PatternBackgroundColor</seealso>
public enum FillPatternStyle
{
None,
Solid,
Gray50,
Gray75,
Gray25,
HorizontalStripe,
VerticalStripe,
ReverseDiagonalStripe,
DiagonalStripe,
DiagonalCrosshatch,
ThickDiagonalCrosshatch,
ThinHorizontalStripe,
ThinVerticalStripe,
ThinReverseDiagonalStripe,
ThinDiagonalStripe,
ThinHorizontalCrosshatch,
ThinDiagonalCrosshatch,
Gray12,
Gray6
}
}