-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIsoConfig.xml
More file actions
3790 lines (3790 loc) · 223 KB
/
IsoConfig.xml
File metadata and controls
3790 lines (3790 loc) · 223 KB
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
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<IsoConfigDefinition xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="2" Name="Default">
<!-- Output drawing configuration -->
<!-- 'ForceUpcase': 'true' or 'false' -->
<!-- 'true' = convert Annotation and Table text to uppercase -->
<!-- 'false' = do not change case -->
<Output Overwrite="true" ForceUpcase="true" BOMReportFLPLength="false" />
<!-- Support and log file name configuration -->
<!-- 'SymbolLibrary': (string); Symbol and styles library file drawing name (input file). -->
<!-- 'DrawingTemplate': (string); Isometric drawing template file name (input file). -->
<!-- 'LogFile': (string); Message log file name (output file). -->
<!-- 'SymbolMap': (string); Symbol key to block name map (input file). -->
<!-- 'PropertyNameMap': (string); Property name to display name map (input file). -->
<Files SymbolLibrary="..\IsoSymbolStyles.dwg" DrawingTemplate="Iso.dwt" LogFile="IsoCreationLog.txt" SymbolMap="..\IsoSkeyAcadBlockMap.xml" PropertyNameMap="..\PropertyTranslationMapping.xml" />
<AdvancedDefault CreatePCF="true" ExportBOM="false" ExportCutPiece="false" ExportSpool="false" ExportWeld="false" IgnoreBreakPointsInModel="false" IgnoreIsoAnnotations="false" ForceOntoOneSheet="false" SplitOnPropertyChange="true" SplittingCongestion="50" ExportFormat="0" OffsetLocationX="0" OffsetLocationY="0" OffsetLocationZ="0" OffsetRotation="0" RevisionNumber="0-A" IssueDWGs="false" OverwriteExisting="true" CreateDWF="false">
<BreakAttributes>
<BreakAttributes>LineNumberTag</BreakAttributes>
<BreakAttributes>AREA</BreakAttributes>
</BreakAttributes>
</AdvancedDefault>
<!-- File name format -->
<!-- 'UseSpoolNameAsFileName': 'true' or 'false' -->
<!-- 'true' = use spool name as file name, use the setting of SpoolNameFormat -->
<!--
'false' = use the [<ModelProperty><Delimiter>]<SheetNumber>[<Delimiter><ModelProperty>] as the file name
-->
<FileNameFormat UseSpoolNameAsFileName="false">
<!-- Properties included in the file name prefix -->
<!-- PrefixModelProperties contains one or more ModelProperty elements. -->
<PrefixModelProperties>
<!-- Model property -->
<!-- 'Name': (string); The model property name. -->
<!-- 'Delimiter': (string); The delimiter. -->
<ModelProperty Name="AREA" Delimiter="-" />
<ModelProperty Name="PIPELINE-REFERENCE" Delimiter="-" />
</PrefixModelProperties>
<!-- Sheet number format -->
<!-- 'AutoLabelOption': 'Number' or 'Alphabet' -->
<!-- 'Number' = numeric increment -->
<!-- 'Alphabet' = alphabetic increment -->
<!-- 'NumberOfDigits': (decimal); Number of digits. -->
<!-- 'StartFrom': (decimal); The number or alphabet the auto label starts from. -->
<SheetNumber AutoLabelOption="Number" NumberOfDigits="1" AutoIncludeSheetNumber="false" StartFrom="1" />
<!-- Properties included in the file name suffix -->
<SuffixModelProperties>
<ModelProperty Name="" Delimiter="" />
</SuffixModelProperties>
</FileNameFormat>
<!-- Output drawing file name format -->
<!-- Isometric (non-spool) output drawing filenames contain a prefix, the sheet number, and a suffix. -->
<!-- The prefix and suffix can contain model properties. -->
<!-- 'UseSpoolNameAsDrawingName': 'true' or 'false' -->
<!-- 'true' = use spool name as file name, use the setting of SpoolNameFormat -->
<!--
'false' = use the [<ModelProperty><Delimiter>]<SheetNumber>[<Delimiter><ModelProperty>] as the file name
-->
<DrawingNameFormat UseSpoolNameAsDrawingName="false">
<!-- Properties included in the Isometric drawing file name prefix -->
<PrefixModelProperties>
<!-- 'Name': (string); The model property name. -->
<!-- 'Delimiter': (string); The delimiter. -->
<ModelProperty Name="AREA" Delimiter="-" />
<ModelProperty Name="PIPELINE-REFERENCE" Delimiter="-" />
</PrefixModelProperties>
<!-- Sheet number format -->
<!-- 'AutoLabelOption': 'Number' or 'Alphabet' -->
<!-- 'Number' = numeric increment -->
<!-- 'Alphabet' = alphabetic increment -->
<!-- 'NumberOfDigits': (decimal); Number of digits. -->
<!-- 'StartFrom': (decimal); The number or alphabet the auto label starts from. -->
<SheetNumber AutoLabelOption="Number" NumberOfDigits="1" AutoIncludeSheetNumber="false" StartFrom="1" />
<!-- Properties included in the Isometric drawing file name suffix -->
<SuffixModelProperties>
<ModelProperty Name="" Delimiter="" />
</SuffixModelProperties>
</DrawingNameFormat>
<!-- The isometric view scheme -->
<!-- Isometric view and canvas frame configuration. -->
<!-- Width and Length values in this section should be specified in the units of the drawing template. -->
<!-- 'Offset': (double) -->
<!-- The (X, Y) offset from the origin (0, 0) that the isometric canvas should start from. -->
<!-- 'Width': (double) -->
<!-- The width of the isometric canvas. -->
<!-- 'Height': (double) -->
<!-- The height of the isometric canvas. -->
<!-- 'MinLength': (double) -->
<!-- The minimum length of a component in an isometric drawing. -->
<!-- 'GapLength': (double) -->
<!-- The pipe gap length. -->
<!-- 'LeaderGapLength': (double) -->
<!-- The leader gap length. -->
<!-- 'Padding': (double); > 0.0 -->
<!-- The amount of padding for the inside of the canvas frame. -->
<!--
'Scheme': (string); Must match an IsoScheme name in the <Schemes> section.
-->
<View Scheme="SWIsometric">
<!-- North arrow configuration -->
<!-- 'Position': (double double double); Point -->
<!-- 'Scale': (double); > 0.0 -->
<!-- 'Symbol': (string); References a block definition name in the symbol library drawing. -->
<!-- 'SymbolParameter': (string); References a parameter name in the north arrow symbol. -->
<!-- 'Disabled': 'true' or 'false' -->
<!-- 'true' = Hides the north arrow. -->
<!-- 'false' = Displays the north arrow. -->
<NorthArrow Symbol="NorthArrow" SymbolParameter="NorthArrowDirection" />
<!-- List of isometric view schemes -->
<Schemes>
<!-- View scheme -->
<!--
'Name': (string); Referenced by the 'Scheme' attribute in the <View> section.
-->
<!-- 'Direction': (double double double) -->
<!-- Isometric view direction. Use the VIEWDIR command to get the current view direction. -->
<!-- 'NorthArrowDirection': (string); Parameter value of north arrow dynamic block. -->
<Scheme Name="SEIsometric" Direction="1 -1 1" NorthArrowDirection="UpperRight" />
<Scheme Name="SWIsometric" Direction="-1 -1 1" NorthArrowDirection="UpperLeft" />
<Scheme Name="NEIsometric" Direction="1 1 1" NorthArrowDirection="LowerRight" />
<Scheme Name="NWIsometric" Direction="-1 1 1" NorthArrowDirection="LowerLeft" />
</Schemes>
<!-- Title block area definition -->
<!-- There are two types of title block areas: DrawingArea and TableArea. -->
<!-- Drawing area is defined by a set of rectangles. Draw and NoDraw areas comprise the canvas. -->
<!-- Table area is defined by a single rectangle in the draw area. -->
<!-- An IsoTitleBlockArea can be of type 'Draw' or 'NoDraw', with Origin, Width, and Height. -->
<TitleBlockArea>
<!-- List of drawing areas -->
<DrawingAreas>
<DrawingArea AreaType="Draw" Origin="0.25 1.4375" Width="11.5625" Height="9" />
<DrawingArea AreaType="NoDraw" Origin="0.25 9.6875" Width="1.125" Height="0.75" />
</DrawingAreas>
<!-- List of table areas -->
<TableAreas>
<!-- Table area definition -->
<!-- 'ContentType': (string); Can have values of 'Any', 'BOMTable', 'CutPieceList', 'WeldList', or 'SpoolList'. -->
<TableArea AreaType="Draw" Origin="11.91010978957001 1.4281642135238135" Width="4.9011893870083494" Height="2.6328116946019708" />
<TableArea AreaType="Draw" Origin="11.910109789570006 4.0609759081257844" Width="4.9011893870083529" Height="6.4533257075058819" />
</TableAreas>
</TitleBlockArea>
</View>
<!-- Geometry configuration -->
<!-- 'IntersectionType': Can have values of 'None', 'Selective', or 'All'. -->
<!-- 'MaxDistortionRatio': Defines the maximum amount a pipe can be distorted to solve an intersection when IntersectionType is 'Selective'. -->
<!-- 'MakeupLength': Defines the field fit weld makeup length. -->
<Geometry IntersectionType="All" MaxDistortionRatio="2" PipeGapLength="0.25" MakeupLength="3" GapLeaderLine="true" GapDimensionExtensionLine="true" />
<!-- Units format configuration -->
<!-- The DimensionsStyle, CoordinatesStyle, and PipeLengthStyle settings reference. -->
<!-- an AutoCAD dimension style in the style library drawing. -->
<!-- A dimension style is used for formatting different type of measurements. -->
<!-- The unit format, precision, etc. are defined in the "Primary Units" settings of -->
<!-- a dimension style, and can be edited with AutoCAD's "Modify Dimension Style" dialog. -->
<Units>
<!-- The collection of styles which may be used by different measurement type to format measurements. -->
<Styles>
<!-- The style which stores the typical dimension style settings for formatting measurements -->
<!-- 'Name': (string); The name of the style, referenced in the following measurement styles. -->
<!-- 'UnitFormat: (string); Options include Scientific, Decimal, Engineering, Architectural, Fractional and WindowsDesktop. -->
<!--
'Precision: (string); Options include Precision<N> where N is in the range of 1 to 9.
-->
<!-- 'Prefix': (string); The prefix that will be added to the formatted measurement. -->
<!-- 'Suffix': (string); The suffix that will be appended to the formatted measurement. -->
<!-- 'Scale': (double); The scale factor that will apply to the measurement. e.g. 0.001. -->
<!-- 'Decimal': (string); The decimal separator. e.g. '.', ',' or ' '. -->
<Style Name="Imperial" UnitFormat="Architectural" Precision="Precision5" Prefix="" Suffix="" Scale="1" Decimal="." />
<Style Name="ImperialSize" UnitFormat="Fractional" Precision="Precision5" Prefix="" Suffix=""" Scale="1" Decimal="." />
<Style Name="ImperialPipeLength" UnitFormat="Architectural" Precision="Precision5" Prefix="" Suffix="" Scale="1" Decimal="." />
<Style Name="ImperialPipeLengthAlt" UnitFormat="Architectural" Precision="Precision1" Prefix="" Suffix="" Scale="1" Decimal="." />
<Style Name="Metric" UnitFormat="Decimal" Precision="Precision1" Prefix="" Suffix="" Scale="1" Decimal="." />
<Style Name="MetricSize" UnitFormat="Decimal" Precision="Precision1" Prefix="" Suffix="" Scale="1" Decimal="." />
<Style Name="MetricPipeLength" UnitFormat="Decimal" Precision="Precision1" Prefix="" Suffix="mm" Scale="1" Decimal="." />
<Style Name="MetricPipeLengthAlt" UnitFormat="Decimal" Precision="Precision2" Prefix="" Suffix="M" Scale="0.001" Decimal="." />
<Style Name="RefDimExtLineImperial" UnitFormat="Architectural" Precision="Precision5" Prefix="" Suffix="" Scale="0.2" Decimal="." />
<Style Name="RefDimExtLineMetric" UnitFormat="Decimal" Precision="Precision1" Prefix="" Suffix="" Scale="10" Decimal="." />
<Style Name="ImperialPulledPipeLengthAlt" UnitFormat="Architectural" Precision="Precision9" Prefix="" Suffix="" Scale="1" Decimal="." />
<Style Name="MetricPulledPipeLengthAlt" UnitFormat="Decimal" Precision="Precision9" Prefix="" Suffix="M" Scale="0.001" Decimal="." />
</Styles>
<!-- The dimension style used for formatting dimension values. -->
<DimensionsStyle Imperial="AdskIsoImperial" Metric="AdskIsoMetric" Rounded="false" />
<!-- The dimension style used for formatting coordinate values -->
<!-- For example, elevation and end coordinates annotations. -->
<CoordinatesStyle Imperial="Imperial" Metric="Metric" Rounded="false" />
<!-- The dimension style used for formatting size values -->
<!-- For example, bore size, and nominal diameters. -->
<SizeStyle Imperial="ImperialSize" Metric="MetricSize" Rounded="false" />
<!-- The dimension style used for formatting pipe length measurements -->
<!-- For Example, 'Quantity' in the BOM, or 'Length' in the Cut Piece List. -->
<PipeLengthStyle Imperial="ImperialPipeLength" Metric="MetricPipeLength" Rounded="true" />
<!-- The alternate dimension style used for formatting pipe length measurements -->
<!-- Set UseAlternateUnitsStyle='true' in the <AggregatedList> section to enable -->
<!-- alternate pipe length units for a data list. -->
<PipeLengthAltStyle Imperial="ImperialPipeLengthAlt" Metric="MetricPipeLengthAlt" Rounded="true" />
<!-- The dimension style used for formatting bolt diameter measurements -->
<BoltDiameterStyle Imperial="ImperialSize" Metric="MetricSize" Rounded="false" />
<!-- The dimension style used for formatting bolt length measurements -->
<BoltLengthStyle Imperial="ImperialSize" Metric="MetricSize" Rounded="true" />
<!-- The imperial or metric units that are appended to size or bolt measurements -->
<!-- if it cannot be formatted with a dimension style. -->
<LinearUnits Imperial=""" Metric="mm" Rounded="false" />
<!-- The imperial or metric units that are appended to weight measurements -->
<WeightUnits Imperial="lb" Metric="kg" Rounded="false" />
<!-- The dimension style used for formatting reference dimension extension line values. -->
<RefDimExtensionStyle Imperial="RefDimExtLineImperial" Metric="RefDimExtLineMetric" Rounded="false" />
<PulledPipeLengthCalcStyle Imperial="ImperialPulledPipeLengthAlt" Metric="MetricPulledPipeLengthAlt" Rounded="false" />
</Units>
<!-- Skew configuration -->
<!-- 'Skew2d': Can be 'Box', 'BoxWithTriangle', 'TrianglePlusNormalDimensioning', or 'TrianglePlusAlternativeDimensioning'. -->
<!-- 'Skew3d': Can be 'Box', 'BoxWithTriangles' or 'DoubleTriangles'. -->
<!-- 'IncludeBranches': Set 'true' to include the whole pipeline in a skew. 'false' to split at branches (i.e. Tees). -->
<!-- 'Slope': Can be 'TrianglePlusFallIndicator', 'Box3d', or 'DoubleTriangles'. -->
<!-- 'SlopeSymbolType': Can be 'Ratio', 'Percent', 'Angle', 'Gradient', 'ImperialIncline', 'MetricIncline', or 'SuppressFallIndicator'. -->
<!-- 'NonSkewAngleTolerance': The angle tolerance below which the branch is not taken as skewed. -->
<!-- 'FallPercentage': (0.0 - 100.0) -->
<!-- The percentage of rise over run, below which the skew will be considered as a fall. -->
<!-- 'HatchPatternScale': (double) -->
<!-- The hatch pattern scale for a skew triangle. -->
<!-- 'HatchColorIndex': (0 - 256) AutoCAD Color Index (ACI) -->
<!-- Use the COLOR command to get a list of index values. -->
<!-- 0 = ByBlock -->
<!-- 256 = ByLayer -->
<!-- 'HatchBoundaryFillAmount': (0.0 - 1.0) -->
<!-- The fraction of a skew triangle to fill up with a hatch. -->
<!-- 0.25 = 25%; one quarter of the skew triangle will be hatched. -->
<!-- 1.00 = 100%; the entire skew triangle will be hatched. -->
<!-- 'StackingRatio': (0.0 - 1.0) -->
<!-- 'HAngleSuffix': one letter. Default to 'H' -->
<!-- 'VAngleSuffix': one letter. Default to 'V' -->
<!-- 'SkewDimAngularStyle': Can be 'DimAngularOff', 'DimAngularWithoutSuffixNorArc', 'DimAngularWithSuffix', 'DimAngularWithArc', or 'DimAngularWithSuffixAndArc'. -->
<!--RightAngleSize:-->
<!-- RightAngleColorIndex: Acad color index from 0 to 255-->
<Skew Skew2D="TrianglePlusAlternativeDimensioning" Skew3D="DoubleTriangles" IncludeBranches="true" Slope="TrianglePlusFallIndicator" SlopeSymbolType="ImperialIncline" SlopeSymbolBelowPipe="true" SlopeSymbolOffset="0.2" MaxSlopeAngle="5" MinSlopeRatio="0.001" NonSkewAngleTolerance="1.5" SkewToleranceEqualPoint="0.01" HatchPatternScale="0.03125" HatchColorIndex="256" HatchBoundaryFillAmount="0.25" HatchPatternName="LINE" HatchOffset="0.1875" StackingRatio="0.33" HAngleSuffix="H" VAngleSuffix="V" EnableDimension="true" SkewDimAngularStyle="DimAngularWithSuffixAndArc" DimAngularTextOffset="0.625" RightAngleSize="0.2" RightAngleColorIndex="1">
<!-- 'SlopeSymbols' -->
<!-- 'Key': (string); References the 'SlopeSymbolType' attribute above. -->
<!-- 'Value': (string); References a block definition name in the symbol library drawing -->
<SlopeSymbols>
<Item Key="Angle" Value="AnnoSlopeAngle" />
<Item Key="Ratio" Value="AnnoSlopeRatio" />
<Item Key="Percent" Value="AnnoSlopePercent" />
<Item Key="Gradient" Value="AnnoSlopeGradient" />
<Item Key="ImperialIncline" Value="AnnoSlopeImperialIncline" />
<Item Key="MetricIncline" Value="AnnoSlopeMetricIncline" />
<Item Key="SuppressFallIndicator" Value="AnnoSlopeTriangle" />
</SlopeSymbols>
</Skew>
<!-- Split configuration -->
<Split>
<!-- 'IsoContinuationComponents': Defines the settings of the continuation graphics. -->
<!-- 'MaxCount': (uint); The maximum count of continuation components shown in the ISOs. -->
<!-- 'IncludeFlanges': (boolean); 'true' to include flanges in the count. 'false' otherwise. -->
<IsoContinuationComponents MaxCount="3" IncludeFlanges="false" />
<!--
DefaultSplitPoints defines program preferred connections. For example, a Flange, Field weld,
weld or other end connection that can be picked from a list. The list cannot be empty. New items can
be added to this list, but removing items from the list or changing the order of the list is NOT allowed.
-->
<DefaultSplitPoints>
<SplitPoint Filter="FlangeLike" />
<SplitPoint Filter="WeldFieldItem" />
<SplitPoint Filter="Weld" />
<SplitPoint Filter="AnyItem" />
</DefaultSplitPoints>
<!--
SplitPoints defines user preferred connections. For example, a Flange, Field weld,
weld or other end connection that can be picked from a list. If the list is empty
it will be ignored.
-->
<SplitPoints>
<SplitPoint Filter="FlangeLike" />
<SplitPoint Filter="WeldFieldItem" />
<SplitPoint Filter="Weld" />
</SplitPoints>
<!-- SplitFilters defines filter strings. For example, the filter for FieldItem. -->
<SplitFilters>
<SplitFilter Name="FieldItem" Filter="FieldItem" />
<SplitFilter Name="ShopItem" Filter="ShopItem" />
</SplitFilters>
<!--
SheetSplitPoint defines how sheet split points behavior.
If 'Change' is set to 'true', when a sheet is split at a shop weld, it will change
to the vale defined in the <Connector> section which can be a field weld or a
field fit weld. 'Connector' is a re-use of the Connector defined in <Spool> section, which
defines the connector that will replace the shop weld as the new sheet split point.
-->
<SheetSplitPoint Change="false">
<!-- Connector -->
<!-- 'ConnectorType': 'FieldWeld', 'FieldFitWeld', 'Weld', or 'SymbolName'. -->
<!-- If set to 'SymbolName', the 'SymbolName' value will be used as the connector type. -->
<Connector ConnectorType="FieldWeld" SymbolName="FieldWeld">
<Attributes>
<Item Key="Category" Value="ERECTION-ITEM" />
</Attributes>
</Connector>
</SheetSplitPoint>
<!-- Model split configutation -->
<!-- 'Split': Model-based split will be used if 'Split' is 'true'. -->
<!-- 'ModelSplitMethod': Can be 'PropertyChange' or 'ModelBreakPoint'. -->
<Model Split="true" ModelSplitMethod="ModelBreakPoint">
<!-- Properties defines the option to split isos on changes of properties -->
<!-- Both 'PropertyChange' and 'Filter' can be empty. -->
<!-- 'PropertyChange': Specifies which property change will trigger the split. -->
<!--
'Filter': Specifies the designated item (which can be thought of as multiple properties)
where the split should take place. For example, Filter="Type='Gasket' AND Category='ERECTION-ITEM'".
-->
<Properties PropertyChange="PIPING-SPEC" Filter="" />
</Model>
<!-- Spool split configuration -->
<!-- For Spool splitting, the most important settings is the 'SizeLimits', which defines the standard spool size. -->
<!-- 'Method': Can be 'OnSize', 'OnWeight', or 'OnPropertyChange'. -->
<!-- 'OnSize' uses maximum size criteria and either preferred split point or nearest split point. -->
<!-- 'OnWeight' uses maximum weight criteria and either preferred split point or nearest split point. -->
<!-- 'OnPropertyChange' uses the property based split typically based on the spool number. -->
<!-- 'OverflowLength': Sets a small length in case there are only a few components left after spool splitting. -->
<!-- If the length of these components does not exceed the overflow length, then they will be added to the -->
<!-- preceding spool. Setting 'OverflowLength' to 0 will ignore this option. -->
<!-- 'MaxDirectionChanges': controls the maximum allowed direction changes for a spool. Exceeding which will start -->
<!-- another spool. Setting this option to zero will ignore it. -->
<!-- 'MaxWeight': Defines the maximum weight of all components in the spool. It is not taken into account when setting to '0'. -->
<!-- 'MaxPipeLength': A special case in spool splitting. Normally the max pipe spool is 20ft or 6m. -->
<!-- Set MaxPipeLength to 0 to ignore the option. -->
<Spool SpoolSplitMethod="OnSize" SizeLimits="480 120 96" OverflowLength="6" MaxDirectionChanges="3" MaxWeight="0" MaxPipeLength="0" PropertyChange="PIPING-SPEC" MinimizeFieldWelds="false">
<!-- Connector -->
<!-- Defines the properties of a connector used to connect pipes that are split by the -->
<!-- 'MaxPipeLength' criteria. -->
<!-- 'ConnectorType': 'FieldWeld', 'FieldFitWeld', 'Weld', or 'SymbolName'. -->
<!-- If set to 'SymbolName', the 'SymbolName' value will be used as the connector type. -->
<Connector ConnectorType="FieldWeld" SymbolName="FieldWeld" ConnectionType="BW">
<Attributes>
<Item Key="Category" Value="ERECTION-ITEM" />
</Attributes>
</Connector>
<!-- List of exclusions -->
<!-- Exclusions are components that are not shown in spool drawings. -->
<!-- For example, you can hide the components between a pair of gaskets in a spool drawing. -->
<!-- 'Filter': If set to 'Components' will exclude all field items, valves with flanged connections and pipes that has the MaxPipeLength. -->
<Exclusions Filter="Components" />
<!-- Spool name format -->
<!--
The format is: <Prefix>[<ModelProperty><Delimiter>]<SpoolNumber>[<Delimiter><ModelProperty>]<Suffix>
-->
<!-- 'Prefix': (string); the prefix of the spool name -->
<!-- 'Suffix': (string); the suffix of the spool name -->
<SpoolNameFormat Prefix="" Suffix="">
<!-- Properties included in the spool name prefix -->
<!-- PrefixModelProperties contains one or more ModelProperty elements. -->
<PrefixModelProperties>
<!-- 'Name': (string); The model property name. -->
<!-- 'Delimiter': (string); The delimiter. -->
<ModelProperty Name="PIPELINE-REFERENCE" Delimiter="-" />
</PrefixModelProperties>
<!-- Sheet number format -->
<!-- 'AutoLabelOption': 'Number' or 'Alphabet' -->
<!-- 'Number' = numeric increment -->
<!-- 'Alphabet' = alphabetic increment -->
<!-- 'NumberOfDigits': (decimal); Number of digits. -->
<!-- 'StartFrom': (decimal); The number or alphabet the auto label starts from. -->
<!-- 'Name': (string); spool number name -->
<!-- 'StartFrom': (string); which number or alphabet the auto label starts with -->
<!-- 'UseModelPropertyAsSpoolNumber': 'true' or 'false' -->
<!-- 'true' = use the model property as spool number -->
<!-- 'false' = use simple numeric or alphabetic increment as spool number -->
<!-- 'ModelPropertyForSpoolNumber': (string); The property in the model. -->
<SpoolNumber AutoLabelOption="Number" NumberOfDigits="1" AutoIncludeSheetNumber="false" StartFrom="1" Name="SpoolNumber" UseModelPropertyAsSpoolNumber="false" ModelPropertyForSpoolNumber="SpoolNumber" />
<!-- Properties included in the spool name suffix -->
<SuffixModelProperties>
<ModelProperty Name="" Delimiter="" />
</SuffixModelProperties>
</SpoolNameFormat>
</Spool>
<!-- Auto defines the option for iso model automatic splitting -->
<!-- DisableAutoSplit: Controls whether to disable auto-splitting. 'true' = no auto-splitting will happen. 'false' = auto-splitting takes place. -->
<!-- 'SpoolSplit': 'true' or 'false' -->
<!-- 'true' = the model will split into spool drawings -->
<!-- 'false' = the model will split on drawing congestion if needed -->
<!-- 'IdentifySpools': Controls whether spools need to be identified in the iso drawings. -->
<!-- 'SplitOnCongestion': Controls whether on not to split on drawing congestion. -->
<!-- 'CongestionLevel': (1.0 - 3.0); CongestionLevel defines the congestion level that is allowed in an iso drawing. -->
<!-- 1.0 allows the greatest congestion. 3.0 allows the least congestion. -->
<Auto DisableAutoSplit="false" SplitSymbol="SplitMark" SpoolSplit="false" IdentifySpools="true" SplitOnCongestion="true" CongestionLevel="2" />
</Split>
<!-- Data (solver) configuration -->
<!-- 'SizeDelimiter': A delimiter that separates size values. For example, 'X' in 4" X 6" for a reducer. -->
<Data SizeDelimiter="X">
<!-- Pipe connection to condition map -->
<!-- A table which maps a pipe connection to a pipe condition. The pipe connection information is read -->
<!-- form the 3D piping model, and the pipe condition is the value that is displayed in the cut-piece list. -->
<PipeConnectionToConditionMap>
<Item Key="" Value="Square cut" />
<Item Key="SW" Value="Square cut" />
<Item Key="SL" Value="Square cut" />
<Item Key="C" Value="Square cut" />
<Item Key="P" Value="Square cut" />
<Item Key="BW" Value="Bevel" />
<Item Key="BS" Value="Flared" />
<Item Key="FA" Value="Flared" />
<Item Key="SC" Value="Screwed" />
<Item Key="FL" Value="Flanged" />
</PipeConnectionToConditionMap>
<!-- Aggregated lists -->
<!-- The aggregated lists (e.g. BOM, weld list, cut piece list) that need to be generated -->
<!-- in an isometric model are defined in this section. -->
<AggregatedLists>
<!-- Aggregated list configration -->
<!-- 'xsi:type': Can be 'IsoCompositeDataListConfig' or 'IsoGeneralDataListConfig' -->
<!-- An 'IsoCompositeDataListConfig' configuration is used to define a list that is a -->
<!-- roll-up of multiple 'IsoGeneralDataListConfig' lists. This allows for a second -->
<!-- level of grouping to be defined within a list. -->
<!-- An 'IsoGeneralDataListConfig' defines an aggregated list that only support a single -->
<!-- level of grouping. -->
<!-- 'Name': (string) -->
<!--
This name is referenced by the <DataLinks> section of the <Table> configuration.
-->
<AggregatedList xsi:type="IsoCompositeDataListConfig" Name="Materials">
<!-- An expression that is used to filter which rows are included in the list -->
<!-- Refer to http://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx -->
<!-- for expression syntax. -->
<RowFilter Filter="ItemCodeNotNull" />
<!-- Index configuration - optional. -->
<!-- 'Name': (string) -->
<!-- An attribute of this name will be added to each isometric component. The attribute -->
<!--
name is referenced by the "Fields" attribute of an <AnnotationScheme> configuration.
-->
<!-- 'Format': (string) - optional -->
<!-- The format string for the index. This can be used to specify a prefix and/or a suffix. -->
<!-- 'Characters': (string) - optional -->
<!-- The encoding chracters to use for the index. To generate an alphabetic index, specify -->
<!-- "ABCDEFGHIJKLMNOPQRSTUVWXYZ" or "abcdefghijklmnopqrstuvwxyz". -->
<!-- 'ModelSpecified': 'true' or 'false' -->
<!-- Designates if the index numbers should be extracted from the piping model instead of -->
<!-- being auto-generated, which is the default behavior. -->
<!-- 'ContinuousIndexing' : 'true' or 'false' -->
<!-- Designates if the index numbers should continue from the previous sheet instead of -->
<!-- always starting from 1. This flag is suppressed when 'ModelSpecified' is 'true'. -->
<Index Name="PartNumber" Format="" Characters="" ModelSpecified="false" ContinuousIndexing="false" />
<!-- List of 'IsoGeneralDataListConfig' configurations -->
<Groups>
<!-- 'UseAlternateUnitsStyle': 'true' or 'false' -->
<!-- Designates if the alternate units should style be used to format (pipe length) -->
<!-- measurements in this data list. -->
<Group Name="PIPE" UseAlternateUnitsStyle="true">
<!-- An expression that is used to filter which rows are included in the list -->
<!-- Refer to http://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx -->
<!-- for expression syntax. -->
<RowFilter Filter="Pipe" />
<!-- List of 'Label' configurations -->
<Labels>
<!-- 'Label': (string) -->
<!-- The label of the group. Used only in table templates. -->
<Label Name="pipe" />
</Labels>
<!-- List of columns to group rows by -->
<Columns>
<!-- 'name': (string); Column name -->
<Column Name="Category" />
<Column Name="Code" />
<Column Name="Description" />
</Columns>
<!-- Specifies the sort columns and sort order -->
<!-- 'SortBy': (string); Contains the column name followed by a space and 'ASC' (ascending) or 'DESC' (descending). -->
<!-- Columns are sorted ascending by default. Multiple columns can be separated by commas. -->
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="FITTINGS">
<RowFilter Filter="BOMFitting" />
<Labels>
<Label Name="fittings" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<!-- spcifies the precision of the values -->
<!-- 'Name': (string); column name -->
<!-- 'Precision': (int); the places number -->
<Precisions>
<Precision Name="CutbackAngle" Precision="2" />
</Precisions>
</Group>
<Group Name="OLETS">
<RowFilter Filter="Olet" />
<Labels>
<Label Name="olets" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="FLANGES">
<RowFilter Filter="Flange" />
<Labels>
<Label Name="flanges" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="VALVES">
<RowFilter Filter="Valve" />
<Labels>
<Label Name="valves" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="PIPE SUPPORTS">
<RowFilter Filter="Support" />
<Labels>
<Label Name="pipe supports" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="FASTENERS">
<RowFilter Filter="Fastener" />
<Labels>
<Label Name="fasteners" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
<Column Name="Size" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="INSTRUMENT">
<RowFilter Filter="Instrument" />
<Labels>
<Label Name="instrument" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
<Column Name="Size" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
</Groups>
</AggregatedList>
<AggregatedList xsi:type="IsoCompositeDataListConfig" Name="ShopMaterials">
<RowFilter Filter="ItemCodeNotNullAndCategoryFabItem" />
<Index Name="PartNumber" Format="" Characters="" ModelSpecified="false" ContinuousIndexing="false" />
<Groups>
<Group Name="PIPE" UseAlternateUnitsStyle="true">
<RowFilter Filter="Pipe" />
<Labels>
<Label Name="pipe" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="FITTINGS">
<RowFilter Filter="BOMFitting" />
<Labels>
<Label Name="fittings" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="OLETS">
<RowFilter Filter="Olet" />
<Labels>
<Label Name="olets" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="FLANGES">
<RowFilter Filter="Flange" />
<Labels>
<Label Name="flanges" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="VALVES">
<RowFilter Filter="Valve" />
<Labels>
<Label Name="valves" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="PIPE SUPPORTS">
<RowFilter Filter="Support" />
<Labels>
<Label Name="pipe supports" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="FASTENERS">
<RowFilter Filter="Fastener" />
<Labels>
<Label Name="fasteners" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
<Column Name="Size" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
</Groups>
</AggregatedList>
<AggregatedList xsi:type="IsoCompositeDataListConfig" Name="FieldMaterials">
<RowFilter Filter="ItemCodeNotNullAndCategoryErecItem" />
<Index Name="PartNumber" Format="" Characters="" ModelSpecified="false" ContinuousIndexing="false" />
<Groups>
<Group Name="PIPE" UseAlternateUnitsStyle="true">
<RowFilter Filter="Pipe" />
<Labels>
<Label Name="pipe" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="FITTINGS">
<RowFilter Filter="BOMFitting" />
<Labels>
<Label Name="fittings" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="OLETS">
<RowFilter Filter="Olet" />
<Labels>
<Label Name="olets" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="FLANGES">
<RowFilter Filter="Flange" />
<Labels>
<Label Name="flanges" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="VALVES">
<RowFilter Filter="Valve" />
<Labels>
<Label Name="valves" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="PIPE SUPPORTS">
<RowFilter Filter="Support" />
<Labels>
<Label Name="pipe supports" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
<Group Name="FASTENERS">
<RowFilter Filter="Fastener" />
<Labels>
<Label Name="fasteners" />
</Labels>
<Columns>
<Column Name="Category" />
<Column Name="Code" />
<Column Name="Size" />
</Columns>
<Sort SortBy="Type ASC,ConnectionSize ASC" />
<Precisions />
</Group>
</Groups>
</AggregatedList>
<AggregatedList xsi:type="IsoGeneralDataListConfig" Name="Pipes" Delimiter=" ">
<RowFilter Filter="Pipe" />
<Index Name="CutPieceNumber" Format="" Characters="" ModelSpecified="false" ContinuousIndexing="false" />
<Precisions />
</AggregatedList>
<AggregatedList xsi:type="IsoGeneralDataListConfig" Name="Welds" Delimiter=" ">
<!-- Number ALL welds: Filter="Weld" -->
<!-- Number SHOP welds: Filter="WeldShopItem" -->
<!-- Number FIELD welds: Filter="WeldFieldItem" -->
<RowFilter Filter="Weld" />
<Index Name="WeldNumber" Format="" Characters="" ModelSpecified="false" ContinuousIndexing="false" />
<Precisions />
</AggregatedList>
<AggregatedList xsi:type="IsoGeneralDataListConfig" Name="ShopWelds" Delimiter=" ">
<RowFilter Filter="WeldShopItem" />
<Index Name="WeldNumber" Format="{0}" Characters="" ModelSpecified="false" ContinuousIndexing="false" />
<Precisions />
</AggregatedList>
<AggregatedList xsi:type="IsoGeneralDataListConfig" Name="FieldWelds" Delimiter=" ">
<RowFilter Filter="WeldFieldItem" />
<Index Name="WeldNumber" Format="{0}" Characters="" ModelSpecified="false" ContinuousIndexing="false" />
<Precisions />
</AggregatedList>
<AggregatedList xsi:type="IsoGeneralDataListConfig" Name="Spools" IgnoreThemes="true" Delimiter=" " UseAlternateUnitsStyle="true">
<RowFilter Filter="ExistingFalseSpoolNumberNotEmpty" />
<Columns>
<Column Name="Existing" />
</Columns>
<Sort SortBy="SpoolNumber ASC" />
<Precisions />
</AggregatedList>
</AggregatedLists>
</Data>
<!-- Table configuration -->
<!-- 'AllowOverflow': 'true' or 'false' -->
<Table AllowOverflow="false">
<!-- Allow User to define more table styles -->
<TableLayouts>
<!-- Table layout -->
<!-- 'StyleName': (string); The table style name. -->
<TableLayout Name="Default" StyleName="AdskIso">
<RowStyles>
<!-- Binds row/cell style with row type -->
<RowStyle RowType="Title" StyleName="Title" />
<RowStyle RowType="Header" StyleName="Header" />
<RowStyle RowType="GroupTitle" StyleName="GroupTitle" />
<RowStyle RowType="Data" StyleName="Data" />
<RowStyle RowType="Blank" StyleName="Blank" />
</RowStyles>
</TableLayout>
</TableLayouts>
<!-- Table types that are shown in the table area of the drawing -->
<TableTypes>
<!-- The single table type to be shown -->
<!-- 'TableSectionType': The table section type. Can be 'All', 'ShopItems' or 'FieldItems'. -->
<!-- 'Name': (string); The name of the table. -->
<!-- 'SchemeName': (string); The name of the table scheme this table is using. -->
<!-- 'Title': (string); The title display name. -->
<!-- 'Enabled': 'true' or 'false'; If 'true' the table is shown. If 'false' the table is hidden. -->
<TableType Name="AllMaterials" TableSectionType="All" SchemeName="BOM" Title="BILL OF MATERIALS" Enabled="true" />
<TableType Name="ShopItems" TableSectionType="ShopItems" SchemeName="BOM" Title="FABRICATION ITEMS" Enabled="false" />
<TableType Name="FieldItems" TableSectionType="FieldItems" SchemeName="BOM" Title="ERECTION ITEMS" Enabled="false" />
<TableType Name="CutPieceList" TableSectionType="All" SchemeName="CutPieceList" Title="CUT PIECE LIST" Enabled="true" />
<TableType Name="WeldList" TableSectionType="All" SchemeName="WeldList" Title="WELD LIST" Enabled="true" />
<TableType Name="ShopWeldList" TableSectionType="ShopItems" SchemeName="WeldList" Title="SHOP WELD LIST" Enabled="false" />
<TableType Name="FieldWeldList" TableSectionType="FieldItems" SchemeName="WeldList" Title="FIELD WELD LIST" Enabled="false" />
<TableType Name="SpoolList" TableSectionType="All" SchemeName="SpoolList" Title="SPOOL LIST" Enabled="true" />
</TableTypes>
<!-- List of table schemes -->
<TableSchemes>
<!-- Table scheme -->
<!--
'TableType': Defines the name of the table scheme. It will be used in <DataLinks> section as well.
-->
<!-- 'Title': is what to be shown in the first row of the table. -->
<!-- 'TemplateName': (string); The name of the template to be used for this table. -->
<!-- 'TableLayoutName': The name of the layout that will be used for this table.-->
<!-- 'TitleVisible': 'true' or 'false'; If 'true' show the title. -->
<!-- 'HeaderVisible': 'true' or 'false'; If 'true' show the header columns. -->
<!-- 'InternalSpacing': The spaces between two tables of the same table type. i.e. Fabrication/Erection Items tables -->
<!-- 'Spacing': Controls the spaces between two consecutive tables. -->
<TableScheme TableType="BOM" Name="BOM" TemplateName="SemiComplex" TableLayoutName="Default" TitleVisible="true" HeaderVisible="true" InternalSpacing="0.3937">
<!-- Grouping controls how the grouped component table behaves -->
<!-- Used when 'LayoutOption' is not 'General'. -->
<!-- 'BlankRowsBetweenGroups': Defines how many blank rows are between two group/sub tables. -->
<!-- 'BlankRowsBeforeFirstGroup': Defines how many blank rows are before the first group/sub table. -->
<!-- 'RowType': Defines the row type of the blank row so it may appear differently with different settings. -->
<Grouping BlankRowsBetweenGroups="0" BlankRowsBeforeFirstGroup="0" RowType="Blank" />
<!-- List of column header names and their corresponding labels -->
<ColumnMappings>
<!-- 'HeaderName': (string) -->
<!-- The column name in the source data list defined in the 'Data' section. -->
<!-- 'HeaderRefName': (string) -->
<!-- The reference for the header name. i.e. the reference for 'PressureClass' could be 'EngineeringItems.PressureClass'. -->
<!-- 'Label': (string) -->
<!-- The label that will appear in the template in DWT. -->
<ColumnMapping HeaderName="PartNumber" HeaderRefName="PartNumber" Label="ID" />
<ColumnMapping HeaderName="Description" HeaderRefName="Description" Label="DESCRIPTION" />
<ColumnMapping HeaderName="Size" HeaderRefName="Size" Label="ND" />
<ColumnMapping HeaderName="Quantity" HeaderRefName="Quantity" Label="QTY" />
</ColumnMappings>
<!-- A list of templates -->
<Templates>
<!-- Specifies a table template -->
<!-- 'Name': (string); The name of the template.-->
<!-- 'LayoutOption': (string); Can be 'Simple', 'SemiComplex' or 'Complex'. -->
<!-- Simple - A simple layout without grouping. -->
<!-- SemiComplex - Components are grouped based on component type but all sub tables share the same header. -->
<!-- Complex - Components are grouped based on component type but each sub table can have its individual column settings. -->
<Template Name="Simple" LayoutOption="Simple">
<!-- Column schemes -->
<ColumnSchemes>
<!-- Defines the column settings -->
<!-- 'Default': 'true' or 'false'; If 'true' the column scheme is the default scheme. -->
<ColumnScheme Default="true">
<!-- Groups (String collection) - Which groups is this column scheme applied to -->
<Groups>
<Group Name="" />
</Groups>
<!-- Columns specifies the list of 'Column' definitions in a table -->
<Columns>
<!-- Column definition -->
<!-- 'Name': (string); The column identifier. This is used by the program to identify a column. -->
<!-- 'RelativeWidth': (double) -->
<!-- The column width = TableWidth * (ColumnRelativeWidth / TotalColumnRelateWidths). -->
<!-- 'Label': (string) -->
<!-- The label that will appear in the template in DWT. -->
<!-- 'StyleName': (string) - optional -->
<!-- The name of the AutoCAD Cell Style to apply to the (data) cells in the column. -->
<!-- 'HeaderDisplayName': string - optional -->
<!-- The display name of the table column in the output isometric drawing. -->
<!-- 'Alignment': (CellAlignment) - optional -->
<!-- The column alignment. Default to MiddleCenter. -->
<Column RelativeWidth="1.1111111111111112" Label="ID" HeaderDisplayName="ID" />
<Column RelativeWidth="1.6666666666666665" Label="QTY" HeaderDisplayName="QTY" />
<Column RelativeWidth="1.1111111111111112" Label="ND" HeaderDisplayName="ND" />
<Column RelativeWidth="6.1111111111111116" Label="DESCRIPTION" HeaderDisplayName="DESCRIPTION" Alignment="MiddleLeft" />
</Columns>
</ColumnScheme>
</ColumnSchemes>
</Template>
<Template Name="SemiComplex" LayoutOption="SemiComplex">
<ColumnSchemes>
<ColumnScheme Default="true">
<Groups>
<Group Name="" />
</Groups>
<Columns>
<Column RelativeWidth="1.1111111111111112" Label="ID" HeaderDisplayName="ID" />
<Column RelativeWidth="6.1111111111111116" Label="DESCRIPTION" HeaderDisplayName="DESCRIPTION" Alignment="MiddleLeft" />
<Column RelativeWidth="1.1111111111111112" Label="ND" HeaderDisplayName="ND" />
<Column RelativeWidth="1.6666666666666665" Label="QTY" HeaderDisplayName="QTY" />
</Columns>
</ColumnScheme>
</ColumnSchemes>
</Template>
<Template Name="Complex" LayoutOption="Complex">
<ColumnSchemes>
<ColumnScheme Default="true">
<Groups>
<Group Name="" />
</Groups>
<Columns>
<Column RelativeWidth="1.1111111111111112" Label="ID" HeaderDisplayName="ID" />
<Column RelativeWidth="1.6666666666666665" Label="QTY" HeaderDisplayName="QTY" />
<Column RelativeWidth="1.1111111111111112" Label="ND" HeaderDisplayName="ND" />
<Column RelativeWidth="6.1111111111111116" Label="DESCRIPTION" HeaderDisplayName="DESCRIPTION" Alignment="MiddleLeft" />
</Columns>
</ColumnScheme>
<ColumnScheme Default="false">
<Groups>
<!-- 'Name': (string); The name of the group that the column scheme will apply to. -->
<Group Name="Pipe" />
</Groups>
<Columns>
<Column RelativeWidth="1.1111111111111112" Label="ID" HeaderDisplayName="ID" />
<Column RelativeWidth="1.6666666666666665" Label="QTY" HeaderDisplayName="QTY" />
<Column RelativeWidth="1.1111111111111112" Label="ND" HeaderDisplayName="ND" />
<Column RelativeWidth="6.1111111111111116" Label="DESCRIPTION" HeaderDisplayName="DESCRIPTION" Alignment="MiddleLeft" />
</Columns>
</ColumnScheme>
</ColumnSchemes>
</Template>
</Templates>
<!-- Export to file -->
<!-- 'Export': 'true' or 'false'; If 'true' export table to a file, but subject to the visibility of the table. -->
<!-- 'ExportFileType': Defines the file type to be exported. Can be 'TXT', 'CSV', 'XLS' or 'XLSX'. -->
<ExportToFile Export="false" ExportFileType="CSV" ForceExportOnEmptyData="false">
<ExportFileNaming Prefix="" Suffix="-BOM" />
</ExportToFile>
</TableScheme>
<TableScheme TableType="CutPieceList" Name="CutPieceList" TemplateName="Simple" TableLayoutName="Default" TitleVisible="true" HeaderVisible="true" Spacing="0.3937">
<ColumnMappings>
<ColumnMapping HeaderName="CutPieceNumber" Label="ID" />
<ColumnMapping HeaderName="Quantity" Label="Length" />
<ColumnMapping HeaderName="Size" Label="ND" />
<ColumnMapping HeaderName="End1" Label="End1" />
<ColumnMapping HeaderName="End2" Label="End2" />
</ColumnMappings>
<Templates>
<Template Name="Simple" LayoutOption="Simple">
<ColumnSchemes>
<ColumnScheme Default="true">
<Groups>
<Group Name="" />
</Groups>
<Columns>
<Column RelativeWidth="1.1111111111111112" Label="ID" HeaderDisplayName="ID" />
<Column RelativeWidth="3.333333333333333" Label="LENGTH" HeaderDisplayName="LENGTH" />
<Column RelativeWidth="1.1111111111111112" Label="ND" HeaderDisplayName="ND" />
<Column RelativeWidth="2.2222222222222223" Label="END1" HeaderDisplayName="END1" />
<Column RelativeWidth="2.2222222222222223" Label="END2" HeaderDisplayName="END2" />
</Columns>
</ColumnScheme>
</ColumnSchemes>
</Template>
</Templates>
<ExportToFile Export="false" ExportFileType="CSV" ForceExportOnEmptyData="false">
<ExportFileNaming Prefix="" Suffix="-cutlengths" />
</ExportToFile>
</TableScheme>
<TableScheme TableType="WeldList" Name="WeldList" TemplateName="Simple" TableLayoutName="Default" TitleVisible="true" HeaderVisible="true" Spacing="0.3937">
<ColumnMappings>
<ColumnMapping HeaderName="WeldNumber" Label="ID" />
<ColumnMapping HeaderName="Size" Label="ND" />
<ColumnMapping HeaderName="Type" Label="Type" />
<ColumnMapping HeaderName="Category" Label="Category" />
</ColumnMappings>
<Templates>
<Template Name="Simple" LayoutOption="Simple">
<ColumnSchemes>
<ColumnScheme Default="true">
<Groups>
<Group Name="" />
</Groups>
<Columns>
<Column RelativeWidth="1.25" Label="ID" HeaderDisplayName="ID" />
<Column RelativeWidth="1.25" Label="ND" HeaderDisplayName="ND" />
<Column RelativeWidth="2.5" Label="TYPE" HeaderDisplayName="TYPE" />
<Column RelativeWidth="5" Label="CATEGORY" HeaderDisplayName="CATEGORY" />
</Columns>
</ColumnScheme>
</ColumnSchemes>
</Template>
</Templates>
<ExportToFile Export="false" ExportFileType="CSV" ForceExportOnEmptyData="false">
<ExportFileNaming Prefix="" Suffix="-welds" />
</ExportToFile>
</TableScheme>
<TableScheme TableType="SpoolList" Name="SpoolList" TemplateName="Simple" TableLayoutName="Default" TitleVisible="true" HeaderVisible="false" Spacing="0.3937">
<ColumnMappings>
<ColumnMapping HeaderName="SpoolNumber" Label="Spools" />
</ColumnMappings>
<Templates>
<Template Name="Simple" LayoutOption="Simple">
<ColumnSchemes>
<ColumnScheme Default="true">
<Groups>
<Group Name="" />
</Groups>