jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
 
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for Additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
       http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */
 
namespace HH.WMS.Utils.NPOI.DDF
{
    using System;
    using System.Collections;
 
    /// <summary>
    /// Provides a list of all known escher properties including the description and
    /// type.
    /// @author Glen Stampoultzis (glens at apache.org)
    /// </summary>
    public class EscherProperties
    {
 
        #region Property constants
        public const short TRANSFORM__ROTATION = 4;
        public const short PROTECTION__LOCKROTATION = 119;
        public const short PROTECTION__LOCKASPECTRATIO = 120;
        public const short PROTECTION__LOCKPOSITION = 121;
        public const short PROTECTION__LOCKAGAINSTSELECT = 122;
        public const short PROTECTION__LOCKCROPPING = 123;
        public const short PROTECTION__LOCKVERTICES = 124;
        public const short PROTECTION__LOCKTEXT = 125;
        public const short PROTECTION__LOCKADJUSTHANDLES = 126;
        public const short PROTECTION__LOCKAGAINSTGROUPING = 127;
        public const short TEXT__TEXTID = 128;
        public const short TEXT__TEXTLEFT = 129;
        public const short TEXT__TEXTTOP = 130;
        public const short TEXT__TEXTRIGHT = 131;
        public const short TEXT__TEXTBOTTOM = 132;
        public const short TEXT__WRAPTEXT = 133;
        public const short TEXT__SCALETEXT = 134;
        public const short TEXT__ANCHORTEXT = 135;
        public const short TEXT__TEXTFLOW = 136;
        public const short TEXT__FONTROTATION = 137;
        public const short TEXT__IDOFNEXTSHAPE = 138;
        public const short TEXT__BIDIR = 139;
        public const short TEXT__SINGLECLICKSELECTS = 187;
        public const short TEXT__USEHOSTMARGINS = 188;
        public const short TEXT__ROTATETEXTWITHSHAPE = 189;
        public const short TEXT__SIZESHAPETOFITTEXT = 190;
        public const short TEXT__SIZE_TEXT_TO_FIT_SHAPE = 191;
        public const short GEOTEXT__UNICODE = 192;
        public const short GEOTEXT__RTFTEXT = 193;
        public const short GEOTEXT__ALIGNMENTONCURVE = 194;
        public const short GEOTEXT__DEFAULTPOINTSIZE = 195;
        public const short GEOTEXT__TEXTSPACING = 196;
        public const short GEOTEXT__FONTFAMILYNAME = 197;
        public const short GEOTEXT__REVERSEROWORDER = 240;
        public const short GEOTEXT__HASTEXTEFFECT = 241;
        public const short GEOTEXT__ROTATECHARACTERS = 242;
        public const short GEOTEXT__KERNCHARACTERS = 243;
        public const short GEOTEXT__TIGHTORTRACK = 244;
        public const short GEOTEXT__STRETCHTOFITSHAPE = 245;
        public const short GEOTEXT__CHARBOUNDINGBOX = 246;
        public const short GEOTEXT__SCALETEXTONPATH = 247;
        public const short GEOTEXT__STRETCHCHARHEIGHT = 248;
        public const short GEOTEXT__NOMEASUREALONGPATH = 249;
        public const short GEOTEXT__BOLDFONT = 250;
        public const short GEOTEXT__ITALICFONT = 251;
        public const short GEOTEXT__UNDERLINEFONT = 252;
        public const short GEOTEXT__SHADOWFONT = 253;
        public const short GEOTEXT__SMALLCAPSFONT = 254;
        public const short GEOTEXT__STRIKETHROUGHFONT = 255;
        public const short BLIP__CROPFROMTOP = 256;
        public const short BLIP__CROPFROMBOTTOM = 257;
        public const short BLIP__CROPFROMLEFT = 258;
        public const short BLIP__CROPFROMRIGHT = 259;
        public const short BLIP__BLIPTODISPLAY = 260;
        public const short BLIP__BLIPFILENAME = 261;
        public const short BLIP__BLIPFLAGS = 262;
        public const short BLIP__TRANSPARENTCOLOR = 263;
        public const short BLIP__CONTRASTSetTING = 264;
        public const short BLIP__BRIGHTNESSSetTING = 265;
        public const short BLIP__GAMMA = 266;
        public const short BLIP__PICTUREID = 267;
        public const short BLIP__DOUBLEMOD = 268;
        public const short BLIP__PICTUREFillMOD = 269;
        public const short BLIP__PICTURELINE = 270;
        public const short BLIP__PRINTBLIP = 271;
        public const short BLIP__PRINTBLIPFILENAME = 272;
        public const short BLIP__PRINTFLAGS = 273;
        public const short BLIP__NOHITTESTPICTURE = 316;
        public const short BLIP__PICTUREGRAY = 317;
        public const short BLIP__PICTUREBILEVEL = 318;
        public const short BLIP__PICTUREACTIVE = 319;
        public const short GEOMETRY__LEFT = 320;
        public const short GEOMETRY__TOP = 321;
        public const short GEOMETRY__RIGHT = 322;
        public const short GEOMETRY__BOTTOM = 323;
        public const short GEOMETRY__SHAPEPATH = 324;
        public const short GEOMETRY__VERTICES = 325;
        public const short GEOMETRY__SEGMENTINFO = 326;
        public const short GEOMETRY__ADJUSTVALUE = 327;
        public const short GEOMETRY__ADJUST2VALUE = 328;
        public const short GEOMETRY__ADJUST3VALUE = 329;
        public const short GEOMETRY__ADJUST4VALUE = 330;
        public const short GEOMETRY__ADJUST5VALUE = 331;
        public const short GEOMETRY__ADJUST6VALUE = 332;
        public const short GEOMETRY__ADJUST7VALUE = 333;
        public const short GEOMETRY__ADJUST8VALUE = 334;
        public const short GEOMETRY__ADJUST9VALUE = 335;
        public const short GEOMETRY__ADJUST10VALUE = 336;
        public const short GEOMETRY__SHADOWok = 378;
        public const short GEOMETRY__3DOK = 379;
        public const short GEOMETRY__LINEOK = 380;
        public const short GEOMETRY__GEOTEXTOK = 381;
        public const short GEOMETRY__FillSHADESHAPEOK = 382;
        public const short GEOMETRY__FillOK = 383;
        public const short Fill__FillTYPE = 384;
        public const short Fill__FillCOLOR = 385;
        public const short Fill__FillOPACITY = 386;
        public const short Fill__FillBACKCOLOR = 387;
        public const short Fill__BACKOPACITY = 388;
        public const short Fill__CRMOD = 389;
        public const short Fill__PATTERNTEXTURE = 390;
        public const short Fill__BLIPFILENAME = 391;
        public const short Fill__BLIPFLAGS = 392;
        public const short Fill__WIDTH = 393;
        public const short Fill__HEIGHT = 394;
        public const short Fill__ANGLE = 395;
        public const short Fill__FOCUS = 396;
        public const short Fill__TOLEFT = 397;
        public const short Fill__TOTOP = 398;
        public const short Fill__TORIGHT = 399;
        public const short Fill__TOBOTTOM = 400;
        public const short Fill__RECTLEFT = 401;
        public const short Fill__RECTTOP = 402;
        public const short Fill__RECTRIGHT = 403;
        public const short Fill__RECTBOTTOM = 404;
        public const short Fill__DZTYPE = 405;
        public const short Fill__SHADEPRESet = 406;
        public const short Fill__SHADECOLORS = 407;
        public const short Fill__ORIGINX = 408;
        public const short Fill__ORIGINY = 409;
        public const short Fill__SHAPEORIGINX = 410;
        public const short Fill__SHAPEORIGINY = 411;
        public const short Fill__SHADETYPE = 412;
        public const short Fill__FillED = 443;
        public const short Fill__HITTESTFill = 444;
        public const short Fill__SHAPE = 445;
        public const short Fill__USERECT = 446;
        public const short Fill__NOFillHITTEST = 447;
        public const short LINESTYLE__COLOR = 448;
        public const short LINESTYLE__OPACITY = 449;
        public const short LINESTYLE__BACKCOLOR = 450;
        public const short LINESTYLE__CRMOD = 451;
        public const short LINESTYLE__LINETYPE = 452;
        public const short LINESTYLE__FillBLIP = 453;
        public const short LINESTYLE__FillBLIPNAME = 454;
        public const short LINESTYLE__FillBLIPFLAGS = 455;
        public const short LINESTYLE__FillWIDTH = 456;
        public const short LINESTYLE__FillHEIGHT = 457;
        public const short LINESTYLE__FillDZTYPE = 458;
        public const short LINESTYLE__LINEWIDTH = 459;
        public const short LINESTYLE__LINEMITERLIMIT = 460;
        public const short LINESTYLE__LINESTYLE = 461;
        public const short LINESTYLE__LINEDASHING = 462;
        public const short LINESTYLE__LINEDASHSTYLE = 463;
        public const short LINESTYLE__LINESTARTARROWHEAD = 464;
        public const short LINESTYLE__LINEENDARROWHEAD = 465;
        public const short LINESTYLE__LINESTARTARROWWIDTH = 466;
        public const short LINESTYLE__LINEESTARTARROWLength = 467;
        public const short LINESTYLE__LINEENDARROWWIDTH = 468;
        public const short LINESTYLE__LINEENDARROWLength = 469;
        public const short LINESTYLE__LINEJOINSTYLE = 470;
        public const short LINESTYLE__LINEENDCAPSTYLE = 471;
        public const short LINESTYLE__ARROWHEADSOK = 507;
        public const short LINESTYLE__ANYLINE = 508;
        public const short LINESTYLE__HITLINETEST = 509;
        public const short LINESTYLE__LINEFillSHAPE = 510;
        public const short LINESTYLE__NOLINEDRAWDASH = 511;
        public const short SHADOWSTYLE__TYPE = 512;
        public const short SHADOWSTYLE__COLOR = 513;
        public const short SHADOWSTYLE__HIGHLIGHT = 514;
        public const short SHADOWSTYLE__CRMOD = 515;
        public const short SHADOWSTYLE__OPACITY = 516;
        public const short SHADOWSTYLE__OFFSetX = 517;
        public const short SHADOWSTYLE__OFFSetY = 518;
        public const short SHADOWSTYLE__SECONDOFFSetX = 519;
        public const short SHADOWSTYLE__SECONDOFFSetY = 520;
        public const short SHADOWSTYLE__SCALEXTOX = 521;
        public const short SHADOWSTYLE__SCALEYTOX = 522;
        public const short SHADOWSTYLE__SCALEXTOY = 523;
        public const short SHADOWSTYLE__SCALEYTOY = 524;
        public const short SHADOWSTYLE__PERSPECTIVEX = 525;
        public const short SHADOWSTYLE__PERSPECTIVEY = 526;
        public const short SHADOWSTYLE__WEIGHT = 527;
        public const short SHADOWSTYLE__ORIGINX = 528;
        public const short SHADOWSTYLE__ORIGINY = 529;
        public const short SHADOWSTYLE__SHADOW = 574;
        public const short SHADOWSTYLE__SHADOWOBSURED = 575;
        public const short PERSPECTIVE__TYPE = 576;
        public const short PERSPECTIVE__OFFSetX = 577;
        public const short PERSPECTIVE__OFFSetY = 578;
        public const short PERSPECTIVE__SCALEXTOX = 579;
        public const short PERSPECTIVE__SCALEYTOX = 580;
        public const short PERSPECTIVE__SCALEXTOY = 581;
        public const short PERSPECTIVE__SCALEYTOY = 582;
        public const short PERSPECTIVE__PERSPECTIVEX = 583;
        public const short PERSPECTIVE__PERSPECTIVEY = 584;
        public const short PERSPECTIVE__WEIGHT = 585;
        public const short PERSPECTIVE__ORIGINX = 586;
        public const short PERSPECTIVE__ORIGINY = 587;
        public const short PERSPECTIVE__PERSPECTIVEON = 639;
        public const short THREED__SPECULARAMOUNT = 640;
        public const short THREED__DIFFUSEAMOUNT = 661;
        public const short THREED__SHININESS = 662;
        public const short THREED__EDGetHICKNESS = 663;
        public const short THREED__EXTRUDEFORWARD = 664;
        public const short THREED__EXTRUDEBACKWARD = 665;
        public const short THREED__EXTRUDEPLANE = 666;
        public const short THREED__EXTRUSIONCOLOR = 667;
        public const short THREED__CRMOD = 648;
        public const short THREED__3DEFFECT = 700;
        public const short THREED__METALLIC = 701;
        public const short THREED__USEEXTRUSIONCOLOR = 702;
        public const short THREED__LIGHTFACE = 703;
        public const short THREEDSTYLE__YROTATIONANGLE = 704;
        public const short THREEDSTYLE__XROTATIONANGLE = 705;
        public const short THREEDSTYLE__ROTATIONAXISX = 706;
        public const short THREEDSTYLE__ROTATIONAXISY = 707;
        public const short THREEDSTYLE__ROTATIONAXISZ = 708;
        public const short THREEDSTYLE__ROTATIONANGLE = 709;
        public const short THREEDSTYLE__ROTATIONCENTERX = 710;
        public const short THREEDSTYLE__ROTATIONCENTERY = 711;
        public const short THREEDSTYLE__ROTATIONCENTERZ = 712;
        public const short THREEDSTYLE__RENDERMODE = 713;
        public const short THREEDSTYLE__TOLERANCE = 714;
        public const short THREEDSTYLE__XVIEWPOINT = 715;
        public const short THREEDSTYLE__YVIEWPOINT = 716;
        public const short THREEDSTYLE__ZVIEWPOINT = 717;
        public const short THREEDSTYLE__ORIGINX = 718;
        public const short THREEDSTYLE__ORIGINY = 719;
        public const short THREEDSTYLE__SKEWANGLE = 720;
        public const short THREEDSTYLE__SKEWAMOUNT = 721;
        public const short THREEDSTYLE__AMBIENTINTENSITY = 722;
        public const short THREEDSTYLE__KEYX = 723;
        public const short THREEDSTYLE__KEYY = 724;
        public const short THREEDSTYLE__KEYZ = 725;
        public const short THREEDSTYLE__KEYINTENSITY = 726;
        public const short THREEDSTYLE__FillX = 727;
        public const short THREEDSTYLE__FillY = 728;
        public const short THREEDSTYLE__FillZ = 729;
        public const short THREEDSTYLE__FillINTENSITY = 730;
        public const short THREEDSTYLE__CONSTRAINROTATION = 763;
        public const short THREEDSTYLE__ROTATIONCENTERAUTO = 764;
        public const short THREEDSTYLE__PARALLEL = 765;
        public const short THREEDSTYLE__KEYHARSH = 766;
        public const short THREEDSTYLE__FillHARSH = 767;
        public const short SHAPE__MASTER = 769;
        public const short SHAPE__CONNECTORSTYLE = 771;
        public const short SHAPE__BLACKANDWHITESetTINGS = 772;
        public const short SHAPE__WMODEPUREBW = 773;
        public const short SHAPE__WMODEBW = 774;
        public const short SHAPE__OLEICON = 826;
        public const short SHAPE__PREFERRELATIVERESIZE = 827;
        public const short SHAPE__LOCKSHAPETYPE = 828;
        public const short SHAPE__DELETEATTACHEDOBJECT = 830;
        public const short SHAPE__BACKGROUNDSHAPE = 831;
        public const short CALLOUT__CALLOUTTYPE = 832;
        public const short CALLOUT__XYCALLOUTGAP = 833;
        public const short CALLOUT__CALLOUTANGLE = 834;
        public const short CALLOUT__CALLOUTDROPTYPE = 835;
        public const short CALLOUT__CALLOUTDROPSPECIFIED = 836;
        public const short CALLOUT__CALLOUTLengthSPECIFIED = 837;
        public const short CALLOUT__ISCALLOUT = 889;
        public const short CALLOUT__CALLOUTACCENTBAR = 890;
        public const short CALLOUT__CALLOUTTEXTBORDER = 891;
        public const short CALLOUT__CALLOUTMINUSX = 892;
        public const short CALLOUT__CALLOUTMINUSY = 893;
        public const short CALLOUT__DROPAUTO = 894;
        public const short CALLOUT__LengthSPECIFIED = 895;
 
        public const short GROUPSHAPE__SHAPENAME = 0x0380;
        public const short GROUPSHAPE__DESCRIPTION = 0x0381;
        public const short GROUPSHAPE__HYPERLINK = 0x0382;
        public const short GROUPSHAPE__WRAPPOLYGONVERTICES = 0x0383;
        public const short GROUPSHAPE__WRAPDISTLEFT = 0x0384;
        public const short GROUPSHAPE__WRAPDISTTOP = 0x0385;
        public const short GROUPSHAPE__WRAPDISTRIGHT = 0x0386;
        public const short GROUPSHAPE__WRAPDISTBOTTOM = 0x0387;
        public const short GROUPSHAPE__REGROUPID = 0x0388;
        public const short GROUPSHAPE__UNUSED906 = 0x038A;
        public const short GROUPSHAPE__TOOLTIP = 0x038D;
        public const short GROUPSHAPE__SCRIPT = 0x038E;
        public const short GROUPSHAPE__POSH = 0x038F;
        public const short GROUPSHAPE__POSRELH = 0x0390;
        public const short GROUPSHAPE__POSV = 0x0391;
        public const short GROUPSHAPE__POSRELV = 0x0392;
        public const short GROUPSHAPE__HR_PCT = 0x0393;
        public const short GROUPSHAPE__HR_ALIGN = 0x0394;
        public const short GROUPSHAPE__HR_HEIGHT = 0x0395;
        public const short GROUPSHAPE__HR_WIDTH = 0x0396;
        public const short GROUPSHAPE__SCRIPTEXT = 0x0397;
        public const short GROUPSHAPE__SCRIPTLANG = 0x0398;
        public const short GROUPSHAPE__BORDERTOPCOLOR = 0x039B;
        public const short GROUPSHAPE__BORDERLEFTCOLOR = 0x039C;
        public const short GROUPSHAPE__BORDERBOTTOMCOLOR = 0x039D;
        public const short GROUPSHAPE__BORDERRIGHTCOLOR = 0x039E;
        public const short GROUPSHAPE__TABLEPROPERTIES = 0x039F;
        public const short GROUPSHAPE__TABLEROWPROPERTIES = 0x03A0;
        public const short GROUPSHAPE__WEBBOT = 0x03A5;
        public const short GROUPSHAPE__METROBLOB = 0x03A9;
        public const short GROUPSHAPE__ZORDER = 0x03AA;
        public const short GROUPSHAPE__FLAGS = 0x03BF;
        public const short GROUPSHAPE__EDITEDWRAP = 953;
        public const short GROUPSHAPE__BEHINDDOCUMENT = 954;
        public const short GROUPSHAPE__ONDBLCLICKNOTIFY = 955;
        public const short GROUPSHAPE__ISBUTTON = 956;
        public const short GROUPSHAPE__1DADJUSTMENT = 957;
        public const short GROUPSHAPE__HIDDEN = 958;
        public const short GROUPSHAPE__PRINT = 959;
        #endregion
 
        private static Hashtable properties;
 
        /// <summary>
        /// Inits the props.
        /// </summary>
        private static void InitProps()
        {
            if (properties == null)
            {
                properties = new Hashtable();
                AddProp(TRANSFORM__ROTATION, GetData("transform.rotation"));
                AddProp(PROTECTION__LOCKROTATION, GetData("protection.lockrotation"));
                AddProp(PROTECTION__LOCKASPECTRATIO, GetData("protection.lockaspectratio"));
                AddProp(PROTECTION__LOCKPOSITION, GetData("protection.lockposition"));
                AddProp(PROTECTION__LOCKAGAINSTSELECT, GetData("protection.lockagainstselect"));
                AddProp(PROTECTION__LOCKCROPPING, GetData("protection.lockcropping"));
                AddProp(PROTECTION__LOCKVERTICES, GetData("protection.lockvertices"));
                AddProp(PROTECTION__LOCKTEXT, GetData("protection.locktext"));
                AddProp(PROTECTION__LOCKADJUSTHANDLES, GetData("protection.lockadjusthandles"));
                AddProp(PROTECTION__LOCKAGAINSTGROUPING, GetData("protection.lockagainstgrouping", EscherPropertyMetaData.TYPE_bool));
                AddProp(TEXT__TEXTID, GetData("text.textid"));
                AddProp(TEXT__TEXTLEFT, GetData("text.textleft"));
                AddProp(TEXT__TEXTTOP, GetData("text.texttop"));
                AddProp(TEXT__TEXTRIGHT, GetData("text.textright"));
                AddProp(TEXT__TEXTBOTTOM, GetData("text.textbottom"));
                AddProp(TEXT__WRAPTEXT, GetData("text.wraptext"));
                AddProp(TEXT__SCALETEXT, GetData("text.scaletext"));
                AddProp(TEXT__ANCHORTEXT, GetData("text.anchortext"));
                AddProp(TEXT__TEXTFLOW, GetData("text.textflow"));
                AddProp(TEXT__FONTROTATION, GetData("text.fontrotation"));
                AddProp(TEXT__IDOFNEXTSHAPE, GetData("text.idofnextshape"));
                AddProp(TEXT__BIDIR, GetData("text.bidir"));
                AddProp(TEXT__SINGLECLICKSELECTS, GetData("text.singleclickselects"));
                AddProp(TEXT__USEHOSTMARGINS, GetData("text.usehostmargins"));
                AddProp(TEXT__ROTATETEXTWITHSHAPE, GetData("text.rotatetextwithshape"));
                AddProp(TEXT__SIZESHAPETOFITTEXT, GetData("text.sizeshapetofittext"));
                AddProp(TEXT__SIZE_TEXT_TO_FIT_SHAPE, GetData("text.sizetexttofitshape", EscherPropertyMetaData.TYPE_bool));
                AddProp(GEOTEXT__UNICODE, GetData("geotext.unicode"));
                AddProp(GEOTEXT__RTFTEXT, GetData("geotext.rtftext"));
                AddProp(GEOTEXT__ALIGNMENTONCURVE, GetData("geotext.alignmentoncurve"));
                AddProp(GEOTEXT__DEFAULTPOINTSIZE, GetData("geotext.defaultpointsize"));
                AddProp(GEOTEXT__TEXTSPACING, GetData("geotext.textspacing"));
                AddProp(GEOTEXT__FONTFAMILYNAME, GetData("geotext.fontfamilyname"));
                AddProp(GEOTEXT__REVERSEROWORDER, GetData("geotext.reverseroworder"));
                AddProp(GEOTEXT__HASTEXTEFFECT, GetData("geotext.hastexteffect"));
                AddProp(GEOTEXT__ROTATECHARACTERS, GetData("geotext.rotatecharacters"));
                AddProp(GEOTEXT__KERNCHARACTERS, GetData("geotext.kerncharacters"));
                AddProp(GEOTEXT__TIGHTORTRACK, GetData("geotext.tightortrack"));
                AddProp(GEOTEXT__STRETCHTOFITSHAPE, GetData("geotext.stretchtofitshape"));
                AddProp(GEOTEXT__CHARBOUNDINGBOX, GetData("geotext.charboundingbox"));
                AddProp(GEOTEXT__SCALETEXTONPATH, GetData("geotext.scaletextonpath"));
                AddProp(GEOTEXT__STRETCHCHARHEIGHT, GetData("geotext.stretchcharheight"));
                AddProp(GEOTEXT__NOMEASUREALONGPATH, GetData("geotext.nomeasurealongpath"));
                AddProp(GEOTEXT__BOLDFONT, GetData("geotext.boldfont"));
                AddProp(GEOTEXT__ITALICFONT, GetData("geotext.italicfont"));
                AddProp(GEOTEXT__UNDERLINEFONT, GetData("geotext.underlinefont"));
                AddProp(GEOTEXT__SHADOWFONT, GetData("geotext.shadowfont"));
                AddProp(GEOTEXT__SMALLCAPSFONT, GetData("geotext.smallcapsfont"));
                AddProp(GEOTEXT__STRIKETHROUGHFONT, GetData("geotext.strikethroughfont"));
                AddProp(BLIP__CROPFROMTOP, GetData("blip.cropfromtop"));
                AddProp(BLIP__CROPFROMBOTTOM, GetData("blip.cropfrombottom"));
                AddProp(BLIP__CROPFROMLEFT, GetData("blip.cropfromleft"));
                AddProp(BLIP__CROPFROMRIGHT, GetData("blip.cropfromright"));
                AddProp(BLIP__BLIPTODISPLAY, GetData("blip.bliptodisplay"));
                AddProp(BLIP__BLIPFILENAME, GetData("blip.blipfilename"));
                AddProp(BLIP__BLIPFLAGS, GetData("blip.blipflags"));
                AddProp(BLIP__TRANSPARENTCOLOR, GetData("blip.transparentcolor"));
                AddProp(BLIP__CONTRASTSetTING, GetData("blip.contrastSetting"));
                AddProp(BLIP__BRIGHTNESSSetTING, GetData("blip.brightnessSetting"));
                AddProp(BLIP__GAMMA, GetData("blip.gamma"));
                AddProp(BLIP__PICTUREID, GetData("blip.pictureid"));
                AddProp(BLIP__DOUBLEMOD, GetData("blip.doublemod"));
                AddProp(BLIP__PICTUREFillMOD, GetData("blip.pictureFillmod"));
                AddProp(BLIP__PICTURELINE, GetData("blip.pictureline"));
                AddProp(BLIP__PRINTBLIP, GetData("blip.printblip"));
                AddProp(BLIP__PRINTBLIPFILENAME, GetData("blip.printblipfilename"));
                AddProp(BLIP__PRINTFLAGS, GetData("blip.printflags"));
                AddProp(BLIP__NOHITTESTPICTURE, GetData("blip.nohittestpicture"));
                AddProp(BLIP__PICTUREGRAY, GetData("blip.picturegray"));
                AddProp(BLIP__PICTUREBILEVEL, GetData("blip.picturebilevel"));
                AddProp(BLIP__PICTUREACTIVE, GetData("blip.pictureactive"));
                AddProp(GEOMETRY__LEFT, GetData("geometry.left"));
                AddProp(GEOMETRY__TOP, GetData("geometry.top"));
                AddProp(GEOMETRY__RIGHT, GetData("geometry.right"));
                AddProp(GEOMETRY__BOTTOM, GetData("geometry.bottom"));
                AddProp(GEOMETRY__SHAPEPATH, GetData("geometry.shapepath", EscherPropertyMetaData.TYPE_SHAPEPATH));
                AddProp(GEOMETRY__VERTICES, GetData("geometry.vertices", EscherPropertyMetaData.TYPE_ARRAY));
                AddProp(GEOMETRY__SEGMENTINFO, GetData("geometry.segmentinfo", EscherPropertyMetaData.TYPE_ARRAY));
                AddProp(GEOMETRY__ADJUSTVALUE, GetData("geometry.adjustvalue"));
                AddProp(GEOMETRY__ADJUST2VALUE, GetData("geometry.adjust2value"));
                AddProp(GEOMETRY__ADJUST3VALUE, GetData("geometry.adjust3value"));
                AddProp(GEOMETRY__ADJUST4VALUE, GetData("geometry.adjust4value"));
                AddProp(GEOMETRY__ADJUST5VALUE, GetData("geometry.adjust5value"));
                AddProp(GEOMETRY__ADJUST6VALUE, GetData("geometry.adjust6value"));
                AddProp(GEOMETRY__ADJUST7VALUE, GetData("geometry.adjust7value"));
                AddProp(GEOMETRY__ADJUST8VALUE, GetData("geometry.adjust8value"));
                AddProp(GEOMETRY__ADJUST9VALUE, GetData("geometry.adjust9value"));
                AddProp(GEOMETRY__ADJUST10VALUE, GetData("geometry.adjust10value"));
                AddProp(GEOMETRY__SHADOWok, GetData("geometry.shadowOK"));
                AddProp(GEOMETRY__3DOK, GetData("geometry.3dok"));
                AddProp(GEOMETRY__LINEOK, GetData("geometry.lineok"));
                AddProp(GEOMETRY__GEOTEXTOK, GetData("geometry.geotextok"));
                AddProp(GEOMETRY__FillSHADESHAPEOK, GetData("geometry.Fillshadeshapeok"));
                AddProp(GEOMETRY__FillOK, GetData("geometry.Fillok", EscherPropertyMetaData.TYPE_bool));
                AddProp(Fill__FillTYPE, GetData("Fill.Filltype"));
                AddProp(Fill__FillCOLOR, GetData("Fill.Fillcolor", EscherPropertyMetaData.TYPE_RGB));
                AddProp(Fill__FillOPACITY, GetData("Fill.Fillopacity"));
                AddProp(Fill__FillBACKCOLOR, GetData("Fill.Fillbackcolor", EscherPropertyMetaData.TYPE_RGB));
                AddProp(Fill__BACKOPACITY, GetData("Fill.backopacity"));
                AddProp(Fill__CRMOD, GetData("Fill.crmod"));
                AddProp(Fill__PATTERNTEXTURE, GetData("Fill.patterntexture"));
                AddProp(Fill__BLIPFILENAME, GetData("Fill.blipfilename"));
                AddProp(Fill__BLIPFLAGS, GetData("Fill.blipflags"));
                AddProp(Fill__WIDTH, GetData("Fill.width"));
                AddProp(Fill__HEIGHT, GetData("Fill.height"));
                AddProp(Fill__ANGLE, GetData("Fill.angle"));
                AddProp(Fill__FOCUS, GetData("Fill.focus"));
                AddProp(Fill__TOLEFT, GetData("Fill.toleft"));
                AddProp(Fill__TOTOP, GetData("Fill.totop"));
                AddProp(Fill__TORIGHT, GetData("Fill.toright"));
                AddProp(Fill__TOBOTTOM, GetData("Fill.tobottom"));
                AddProp(Fill__RECTLEFT, GetData("Fill.rectleft"));
                AddProp(Fill__RECTTOP, GetData("Fill.recttop"));
                AddProp(Fill__RECTRIGHT, GetData("Fill.rectright"));
                AddProp(Fill__RECTBOTTOM, GetData("Fill.rectbottom"));
                AddProp(Fill__DZTYPE, GetData("Fill.dztype"));
                AddProp(Fill__SHADEPRESet, GetData("Fill.shadepReset"));
                AddProp(Fill__SHADECOLORS, GetData("Fill.shadecolors", EscherPropertyMetaData.TYPE_ARRAY));
                AddProp(Fill__ORIGINX, GetData("Fill.originx"));
                AddProp(Fill__ORIGINY, GetData("Fill.originy"));
                AddProp(Fill__SHAPEORIGINX, GetData("Fill.shapeoriginx"));
                AddProp(Fill__SHAPEORIGINY, GetData("Fill.shapeoriginy"));
                AddProp(Fill__SHADETYPE, GetData("Fill.shadetype"));
                AddProp(Fill__FillED, GetData("Fill.Filled"));
                AddProp(Fill__HITTESTFill, GetData("Fill.hittestFill"));
                AddProp(Fill__SHAPE, GetData("Fill.shape"));
                AddProp(Fill__USERECT, GetData("Fill.userect"));
                AddProp(Fill__NOFillHITTEST, GetData("Fill.noFillhittest", EscherPropertyMetaData.TYPE_bool));
                AddProp(LINESTYLE__COLOR, GetData("linestyle.color", EscherPropertyMetaData.TYPE_RGB));
                AddProp(LINESTYLE__OPACITY, GetData("linestyle.opacity"));
                AddProp(LINESTYLE__BACKCOLOR, GetData("linestyle.backcolor", EscherPropertyMetaData.TYPE_RGB));
                AddProp(LINESTYLE__CRMOD, GetData("linestyle.crmod"));
                AddProp(LINESTYLE__LINETYPE, GetData("linestyle.linetype"));
                AddProp(LINESTYLE__FillBLIP, GetData("linestyle.Fillblip"));
                AddProp(LINESTYLE__FillBLIPNAME, GetData("linestyle.Fillblipname"));
                AddProp(LINESTYLE__FillBLIPFLAGS, GetData("linestyle.Fillblipflags"));
                AddProp(LINESTYLE__FillWIDTH, GetData("linestyle.Fillwidth"));
                AddProp(LINESTYLE__FillHEIGHT, GetData("linestyle.Fillheight"));
                AddProp(LINESTYLE__FillDZTYPE, GetData("linestyle.Filldztype"));
                AddProp(LINESTYLE__LINEWIDTH, GetData("linestyle.linewidth"));
                AddProp(LINESTYLE__LINEMITERLIMIT, GetData("linestyle.linemiterlimit"));
                AddProp(LINESTYLE__LINESTYLE, GetData("linestyle.linestyle"));
                AddProp(LINESTYLE__LINEDASHING, GetData("linestyle.linedashing"));
                AddProp(LINESTYLE__LINEDASHSTYLE, GetData("linestyle.linedashstyle", EscherPropertyMetaData.TYPE_ARRAY));
                AddProp(LINESTYLE__LINESTARTARROWHEAD, GetData("linestyle.linestartarrowhead"));
                AddProp(LINESTYLE__LINEENDARROWHEAD, GetData("linestyle.lineendarrowhead"));
                AddProp(LINESTYLE__LINESTARTARROWWIDTH, GetData("linestyle.linestartarrowwidth"));
                AddProp(LINESTYLE__LINEESTARTARROWLength, GetData("linestyle.lineestartarrowLength"));
                AddProp(LINESTYLE__LINEENDARROWWIDTH, GetData("linestyle.lineendarrowwidth"));
                AddProp(LINESTYLE__LINEENDARROWLength, GetData("linestyle.lineendarrowLength"));
                AddProp(LINESTYLE__LINEJOINSTYLE, GetData("linestyle.linejoinstyle"));
                AddProp(LINESTYLE__LINEENDCAPSTYLE, GetData("linestyle.lineendcapstyle"));
                AddProp(LINESTYLE__ARROWHEADSOK, GetData("linestyle.arrowheadsok"));
                AddProp(LINESTYLE__ANYLINE, GetData("linestyle.anyline"));
                AddProp(LINESTYLE__HITLINETEST, GetData("linestyle.hitlinetest"));
                AddProp(LINESTYLE__LINEFillSHAPE, GetData("linestyle.lineFillshape"));
                AddProp(LINESTYLE__NOLINEDRAWDASH, GetData("linestyle.nolinedrawdash", EscherPropertyMetaData.TYPE_bool));
                AddProp(SHADOWSTYLE__TYPE, GetData("shadowstyle.type"));
                AddProp(SHADOWSTYLE__COLOR, GetData("shadowstyle.color", EscherPropertyMetaData.TYPE_RGB));
                AddProp(SHADOWSTYLE__HIGHLIGHT, GetData("shadowstyle.highlight"));
                AddProp(SHADOWSTYLE__CRMOD, GetData("shadowstyle.crmod"));
                AddProp(SHADOWSTYLE__OPACITY, GetData("shadowstyle.opacity"));
                AddProp(SHADOWSTYLE__OFFSetX, GetData("shadowstyle.offsetx"));
                AddProp(SHADOWSTYLE__OFFSetY, GetData("shadowstyle.offsety"));
                AddProp(SHADOWSTYLE__SECONDOFFSetX, GetData("shadowstyle.secondoffsetx"));
                AddProp(SHADOWSTYLE__SECONDOFFSetY, GetData("shadowstyle.secondoffsety"));
                AddProp(SHADOWSTYLE__SCALEXTOX, GetData("shadowstyle.scalextox"));
                AddProp(SHADOWSTYLE__SCALEYTOX, GetData("shadowstyle.scaleytox"));
                AddProp(SHADOWSTYLE__SCALEXTOY, GetData("shadowstyle.scalextoy"));
                AddProp(SHADOWSTYLE__SCALEYTOY, GetData("shadowstyle.scaleytoy"));
                AddProp(SHADOWSTYLE__PERSPECTIVEX, GetData("shadowstyle.perspectivex"));
                AddProp(SHADOWSTYLE__PERSPECTIVEY, GetData("shadowstyle.perspectivey"));
                AddProp(SHADOWSTYLE__WEIGHT, GetData("shadowstyle.weight"));
                AddProp(SHADOWSTYLE__ORIGINX, GetData("shadowstyle.originx"));
                AddProp(SHADOWSTYLE__ORIGINY, GetData("shadowstyle.originy"));
                AddProp(SHADOWSTYLE__SHADOW, GetData("shadowstyle.shadow"));
                AddProp(SHADOWSTYLE__SHADOWOBSURED, GetData("shadowstyle.shadowobsured"));
                AddProp(PERSPECTIVE__TYPE, GetData("perspective.type"));
                AddProp(PERSPECTIVE__OFFSetX, GetData("perspective.offsetx"));
                AddProp(PERSPECTIVE__OFFSetY, GetData("perspective.offsety"));
                AddProp(PERSPECTIVE__SCALEXTOX, GetData("perspective.scalextox"));
                AddProp(PERSPECTIVE__SCALEYTOX, GetData("perspective.scaleytox"));
                AddProp(PERSPECTIVE__SCALEXTOY, GetData("perspective.scalextoy"));
                AddProp(PERSPECTIVE__SCALEYTOY, GetData("perspective.scaleytoy"));
                AddProp(PERSPECTIVE__PERSPECTIVEX, GetData("perspective.perspectivex"));
                AddProp(PERSPECTIVE__PERSPECTIVEY, GetData("perspective.perspectivey"));
                AddProp(PERSPECTIVE__WEIGHT, GetData("perspective.weight"));
                AddProp(PERSPECTIVE__ORIGINX, GetData("perspective.originx"));
                AddProp(PERSPECTIVE__ORIGINY, GetData("perspective.originy"));
                AddProp(PERSPECTIVE__PERSPECTIVEON, GetData("perspective.perspectiveon"));
                AddProp(THREED__SPECULARAMOUNT, GetData("3d.specularamount"));
                AddProp(THREED__DIFFUSEAMOUNT, GetData("3d.diffuseamount"));
                AddProp(THREED__SHININESS, GetData("3d.shininess"));
                AddProp(THREED__EDGetHICKNESS, GetData("3d.edGethickness"));
                AddProp(THREED__EXTRUDEFORWARD, GetData("3d.extrudeforward"));
                AddProp(THREED__EXTRUDEBACKWARD, GetData("3d.extrudebackward"));
                AddProp(THREED__EXTRUDEPLANE, GetData("3d.extrudeplane"));
                AddProp(THREED__EXTRUSIONCOLOR, GetData("3d.extrusioncolor", EscherPropertyMetaData.TYPE_RGB));
                AddProp(THREED__CRMOD, GetData("3d.crmod"));
                AddProp(THREED__3DEFFECT, GetData("3d.3deffect"));
                AddProp(THREED__METALLIC, GetData("3d.metallic"));
                AddProp(THREED__USEEXTRUSIONCOLOR, GetData("3d.useextrusioncolor", EscherPropertyMetaData.TYPE_RGB));
                AddProp(THREED__LIGHTFACE, GetData("3d.lightface"));
                AddProp(THREEDSTYLE__YROTATIONANGLE, GetData("3dstyle.yrotationangle"));
                AddProp(THREEDSTYLE__XROTATIONANGLE, GetData("3dstyle.xrotationangle"));
                AddProp(THREEDSTYLE__ROTATIONAXISX, GetData("3dstyle.rotationaxisx"));
                AddProp(THREEDSTYLE__ROTATIONAXISY, GetData("3dstyle.rotationaxisy"));
                AddProp(THREEDSTYLE__ROTATIONAXISZ, GetData("3dstyle.rotationaxisz"));
                AddProp(THREEDSTYLE__ROTATIONANGLE, GetData("3dstyle.rotationangle"));
                AddProp(THREEDSTYLE__ROTATIONCENTERX, GetData("3dstyle.rotationcenterx"));
                AddProp(THREEDSTYLE__ROTATIONCENTERY, GetData("3dstyle.rotationcentery"));
                AddProp(THREEDSTYLE__ROTATIONCENTERZ, GetData("3dstyle.rotationcenterz"));
                AddProp(THREEDSTYLE__RENDERMODE, GetData("3dstyle.rendermode"));
                AddProp(THREEDSTYLE__TOLERANCE, GetData("3dstyle.tolerance"));
                AddProp(THREEDSTYLE__XVIEWPOINT, GetData("3dstyle.xviewpoint"));
                AddProp(THREEDSTYLE__YVIEWPOINT, GetData("3dstyle.yviewpoint"));
                AddProp(THREEDSTYLE__ZVIEWPOINT, GetData("3dstyle.zviewpoint"));
                AddProp(THREEDSTYLE__ORIGINX, GetData("3dstyle.originx"));
                AddProp(THREEDSTYLE__ORIGINY, GetData("3dstyle.originy"));
                AddProp(THREEDSTYLE__SKEWANGLE, GetData("3dstyle.skewangle"));
                AddProp(THREEDSTYLE__SKEWAMOUNT, GetData("3dstyle.skewamount"));
                AddProp(THREEDSTYLE__AMBIENTINTENSITY, GetData("3dstyle.ambientintensity"));
                AddProp(THREEDSTYLE__KEYX, GetData("3dstyle.keyx"));
                AddProp(THREEDSTYLE__KEYY, GetData("3dstyle.keyy"));
                AddProp(THREEDSTYLE__KEYZ, GetData("3dstyle.keyz"));
                AddProp(THREEDSTYLE__KEYINTENSITY, GetData("3dstyle.keyintensity"));
                AddProp(THREEDSTYLE__FillX, GetData("3dstyle.Fillx"));
                AddProp(THREEDSTYLE__FillY, GetData("3dstyle.Filly"));
                AddProp(THREEDSTYLE__FillZ, GetData("3dstyle.Fillz"));
                AddProp(THREEDSTYLE__FillINTENSITY, GetData("3dstyle.Fillintensity"));
                AddProp(THREEDSTYLE__CONSTRAINROTATION, GetData("3dstyle.constrainrotation"));
                AddProp(THREEDSTYLE__ROTATIONCENTERAUTO, GetData("3dstyle.rotationcenterauto"));
                AddProp(THREEDSTYLE__PARALLEL, GetData("3dstyle.parallel"));
                AddProp(THREEDSTYLE__KEYHARSH, GetData("3dstyle.keyharsh"));
                AddProp(THREEDSTYLE__FillHARSH, GetData("3dstyle.Fillharsh"));
                AddProp(SHAPE__MASTER, GetData("shape.master"));
                AddProp(SHAPE__CONNECTORSTYLE, GetData("shape.connectorstyle"));
                AddProp(SHAPE__BLACKANDWHITESetTINGS, GetData("shape.blackandwhiteSettings"));
                AddProp(SHAPE__WMODEPUREBW, GetData("shape.wmodepurebw"));
                AddProp(SHAPE__WMODEBW, GetData("shape.wmodebw"));
                AddProp(SHAPE__OLEICON, GetData("shape.oleicon"));
                AddProp(SHAPE__PREFERRELATIVERESIZE, GetData("shape.preferrelativeresize"));
                AddProp(SHAPE__LOCKSHAPETYPE, GetData("shape.lockshapetype"));
                AddProp(SHAPE__DELETEATTACHEDOBJECT, GetData("shape.deleteattachedobject"));
                AddProp(SHAPE__BACKGROUNDSHAPE, GetData("shape.backgroundshape"));
                AddProp(CALLOUT__CALLOUTTYPE, GetData("callout.callouttype"));
                AddProp(CALLOUT__XYCALLOUTGAP, GetData("callout.xycalloutgap"));
                AddProp(CALLOUT__CALLOUTANGLE, GetData("callout.calloutangle"));
                AddProp(CALLOUT__CALLOUTDROPTYPE, GetData("callout.calloutdroptype"));
                AddProp(CALLOUT__CALLOUTDROPSPECIFIED, GetData("callout.calloutdropspecified"));
                AddProp(CALLOUT__CALLOUTLengthSPECIFIED, GetData("callout.calloutLengthspecified"));
                AddProp(CALLOUT__ISCALLOUT, GetData("callout.iscallout"));
                AddProp(CALLOUT__CALLOUTACCENTBAR, GetData("callout.calloutaccentbar"));
                AddProp(CALLOUT__CALLOUTTEXTBORDER, GetData("callout.callouttextborder"));
                AddProp(CALLOUT__CALLOUTMINUSX, GetData("callout.calloutminusx"));
                AddProp(CALLOUT__CALLOUTMINUSY, GetData("callout.calloutminusy"));
                AddProp(CALLOUT__DROPAUTO, GetData("callout.dropauto"));
                AddProp(CALLOUT__LengthSPECIFIED, GetData("callout.Lengthspecified"));
                AddProp(GROUPSHAPE__SHAPENAME, GetData("groupshape.shapename"));
                AddProp(GROUPSHAPE__DESCRIPTION, GetData("groupshape.description"));
                AddProp(GROUPSHAPE__HYPERLINK, GetData("groupshape.hyperlink"));
                AddProp(GROUPSHAPE__WRAPPOLYGONVERTICES, GetData("groupshape.wrappolygonvertices", EscherPropertyMetaData.TYPE_ARRAY));
                AddProp(GROUPSHAPE__WRAPDISTLEFT, GetData("groupshape.wrapdistleft"));
                AddProp(GROUPSHAPE__WRAPDISTTOP, GetData("groupshape.wrapdisttop"));
                AddProp(GROUPSHAPE__WRAPDISTRIGHT, GetData("groupshape.wrapdistright"));
                AddProp(GROUPSHAPE__WRAPDISTBOTTOM, GetData("groupshape.wrapdistbottom"));
                AddProp(GROUPSHAPE__REGROUPID, GetData("groupshape.regroupid"));
                AddProp(GROUPSHAPE__EDITEDWRAP, GetData("groupshape.editedwrap"));
                AddProp(GROUPSHAPE__BEHINDDOCUMENT, GetData("groupshape.behinddocument"));
                AddProp(GROUPSHAPE__ONDBLCLICKNOTIFY, GetData("groupshape.ondblclicknotify"));
                AddProp(GROUPSHAPE__ISBUTTON, GetData("groupshape.isbutton"));
                AddProp(GROUPSHAPE__1DADJUSTMENT, GetData("groupshape.1dadjustment"));
                AddProp(GROUPSHAPE__HIDDEN, GetData("groupshape.hidden"));
                AddProp(GROUPSHAPE__PRINT, GetData("groupshape.print", EscherPropertyMetaData.TYPE_bool));
            }
        }
 
        /// <summary>
        /// Adds the prop.
        /// </summary>
        /// <param name="s">The s.</param>
        /// <param name="data">The data.</param>
        private static void AddProp(int s, EscherPropertyMetaData data)
        {
            properties[(short)s]= data;
        }
 
 
        /// <summary>
        /// Gets the data.
        /// </summary>
        /// <param name="propName">Name of the prop.</param>
        /// <param name="type">The type.</param>
        /// <returns></returns>
        private static EscherPropertyMetaData GetData(String propName, byte type)
        {
            return new EscherPropertyMetaData(propName, type);
        }
 
 
        /// <summary>
        /// Gets the data.
        /// </summary>
        /// <param name="propName">Name of the prop.</param>
        /// <returns></returns>
        private static EscherPropertyMetaData GetData(String propName)
        {
            return new EscherPropertyMetaData(propName);
        }
 
        /// <summary>
        /// Gets the name of the property.
        /// </summary>
        /// <param name="propertyId">The property id.</param>
        /// <returns></returns>
        public static String GetPropertyName(short propertyId)
        {
            InitProps();
            EscherPropertyMetaData o = (EscherPropertyMetaData)properties[propertyId];
            return o == null ? "unknown" : o.Description;
        }
 
        /// <summary>
        /// Gets the type of the property.
        /// </summary>
        /// <param name="propertyId">The property id.</param>
        /// <returns></returns>
        public static byte GetPropertyType(short propertyId)
        {
            InitProps();
            EscherPropertyMetaData escherPropertyMetaData = (EscherPropertyMetaData)properties[propertyId];
            return escherPropertyMetaData == null ? (byte)0 : escherPropertyMetaData.Type;
        }
    }
}