zhao
2021-07-02 081df17b8cc4a6e7e4f4e1e1887f24810e3ec2f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Text;
 
namespace HH.WMS.Utils.NPOI.SS.UserModel
{
    public enum LineStyle:int
    {
        None = -1,
        Solid = 0, // Solid (continuous) pen
        DashSys = 1, // PS_DASH system   dash style
        DotSys = 2, // PS_DOT system   dash style
        DashDotSys = 3, // PS_DASHDOT system dash style
        DashDotDotSys = 4, // PS_DASHDOTDOT system dash style
        DotGel = 5, // square dot style
        DashGel = 6, // dash style
        LongDashGel = 7, // long dash style
        DashDotGel = 8, // dash short dash
        LongDashDotGel = 9, // long dash short dash
        LongDashDotDotGel = 10, // long dash short dash short dash
    }
}