zhao
2021-06-24 02ca96debc6056275d58e55d97f7885a195542d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Collections.Generic;
using System.Text;
 
namespace HH.WMS.Utils.ExcelLibrary.BinaryDrawingFormat
{
    public class EscherRecordType
    {
        public const UInt16 MsofbtDggContainer = 0xF000;
        public const UInt16 MsofbtBstoreContainer = 0xF001;
        public const UInt16 MsofbtDgContainer = 0xF002;
        public const UInt16 MsofbtSpgrContainer = 0xF003;
        public const UInt16 MsofbtSpContainer = 0xF004;
        public const UInt16 MsofbtSolverContainer = 0xF005;
        public const UInt16 MsofbtDgg = 0xF006;
        public const UInt16 MsofbtBSE = 0xF007;
        public const UInt16 MsofbtDg = 0xF008;
        public const UInt16 MsofbtSpgr = 0xF009;
        public const UInt16 MsofbtSp = 0xF00A;
        public const UInt16 MsofbtOPT = 0xF00B;
        public const UInt16 MsofbtTextbox = 0xF00C;
        public const UInt16 MsofbtClientTextbox = 0xF00D;
        public const UInt16 MsofbtAnchor = 0xF00E;
        public const UInt16 MsofbtChildAnchor = 0xF00F;
        public const UInt16 MsofbtClientAnchor = 0xF010;
        public const UInt16 MsofbtClientData = 0xF011;
        public const UInt16 MsofbtConnectorRule = 0xF012;
        public const UInt16 MsofbtAlignRule = 0xF013;
        public const UInt16 MsofbtArcRule = 0xF014;
        public const UInt16 MsofbtClientRule = 0xF015;
        public const UInt16 MsofbtCLSID = 0xF016;
        public const UInt16 MsofbtCalloutRule = 0xF017;
        public const UInt16 MsofbtBlipStart = 0xF018;
        public const UInt16 MsofbtBlipMetafileEMF = 0xF01A;
        public const UInt16 MsofbtBlipMetafileWMF = 0xF01B;
        public const UInt16 MsofbtBlipMetafilePICT = 0xF01C;
        public const UInt16 MsofbtBlipBitmapJPEG = 0xF01D;
        public const UInt16 MsofbtBlipBitmapPNG = 0xF01E;
        public const UInt16 MsofbtBlipBitmapDIB = 0xF01F;
        public const UInt16 MsofbtBlipEnd = 0xF117;
        public const UInt16 MsofbtRegroupItems = 0xF118;
        public const UInt16 MsofbtSelection = 0xF119;
        public const UInt16 MsofbtColorMRU = 0xF11A;
        public const UInt16 MsofbtDeletedPspl = 0xF11D;
        public const UInt16 MsofbtSplitMenuColors = 0xF11E;
        public const UInt16 MsofbtOleObject = 0xF11F;
        public const UInt16 MsofbtColorScheme = 0xF120;
    }
}