zjf
2023-03-06 392b76515f40376b6d36f40a114850ef63650384
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
/////////////////////////////////////////////////////////////////////////////// 
// Copyright (C) 2002-2016, Open Design Alliance (the "Alliance"). 
// All rights reserved. 
// 
// This software and its documentation and related materials are owned by 
// the Alliance. The software may only be incorporated into application 
// programs owned by members of the Alliance, subject to a signed 
// Membership Agreement and Supplemental Software License Agreement with the
// Alliance. The structure and organization of this software are the valuable  
// trade secrets of the Alliance and its suppliers. The software is also 
// protected by copyright law and international treaty provisions. Application  
// programs incorporating this software must include the following statement 
// with their copyright notices:
//   
//   This application incorporates Teigha(R) software pursuant to a license 
//   agreement with Open Design Alliance.
//   Teigha(R) Copyright (C) 2002-2016 by Open Design Alliance. 
//   All rights reserved.
//
// By use of this software, its documentation or related materials, you 
// acknowledge and accept the above terms.
///////////////////////////////////////////////////////////////////////////////
 
#ifndef OD_DBPLOTSETTINGS_H
#define OD_DBPLOTSETTINGS_H
 
#include "TD_PackPush.h"
 
#include "DbObject.h"
#include "Ge/GePoint2d.h"
 
/** \details
    This class represents PlotSettings objects in an OdDbDatabase instance.
    
    \sa
    TD_Db
   
    <group OdDb_Classes>
*/
class TOOLKIT_EXPORT OdDbPlotSettings : public OdDbObject
{
public:
  ODDB_DECLARE_MEMBERS(OdDbPlotSettings);
 
  OdDbPlotSettings();
 
  enum PlotPaperUnits
  {
    kInches         = 0,   // Inches
    kMillimeters    = 1,   // Millimeters
    kPixels         = 2    // Pixels
  };
 
  enum PlotRotation
  {
    k0degrees       = 0,   // No rotation
    k90degrees      = 1,   // 90° CCW
    k180degrees     = 2,   // Inverted
    k270degrees     = 3    // 90° CW
  };
 
  enum PlotType
  {
    kDisplay        = 0,   // Display
    kExtents        = 1,   // Extents
    kLimits         = 2,   // Limits
    kView           = 3,   // View
    kWindow         = 4,   // Window
    kLayout         = 5    // Layout
  };
 
  enum StdScaleType
  {
    kScaleToFit     = 0,   // Scaled to Fit
    k1_128in_1ft    = 1,   // 1/128" = 1'
    k1_64in_1ft     = 2,   // 1/64" = 1'
    k1_32in_1ft     = 3,   // 1/32" = 1'
    k1_16in_1ft     = 4,   // 1/16" = 1'
    k3_32in_1ft     = 5,   // 3/32" = 1'
    k1_8in_1ft      = 6,   // 1/8" = 1'
    k3_16in_1ft     = 7,   // 3/16" = 1'
    k1_4in_1ft      = 8,   // 1/4" = 1'
    k3_8in_1ft      = 9,   // 3/8" = 1'
    k1_2in_1ft      = 10,  // 1/2" = 1'
    k3_4in_1ft      = 11,  // 3/4" = 1'
    k1in_1ft        = 12,  // 1" = 1'
    k3in_1ft        = 13,  // 3" = 1'
    k6in_1ft        = 14,  // 6" = 1'
    k1ft_1ft        = 15,  // 1' = 1'
    k1_1            = 16,  // 1:1
    k1_2            = 17,  // 1:2
    k1_4            = 18,  // 1:4
    k1_5            = 19,  // 1:5
    k1_8            = 20,  // 1:8
    k1_10           = 21,  // 1:10
    k1_16           = 22,  // 1:16
    k1_20           = 23,  // 1:20
    k1_30           = 24,  // 1:30
    k1_40           = 25,  // 1:40
    k1_50           = 26,  // 1:50
    k1_100          = 27,  // 1:100
    k2_1            = 28,  // 2:1
    k4_1            = 29,  // 4:1
    k8_1            = 30,  // 8:1
    k10_1           = 31,  // 10:1
    k100_1          = 32,  // 100:1
    k1000_1         = 33,  // 1000:1
    k1and1_2in_1ft  = 34  // 1.5"= 1' 
  };
 
  enum ShadePlotType 
  {
    kAsDisplayed    = 0, // As displayed
    kWireframe      = 1, // Wireframe
    kHidden         = 2, // Hidden lines removed
    kRendered       = 3, // Rendered
    kVisualStyle    = 4, // Visual style
    kRenderPreset   = 5  // Render preset
  };
 
  enum ShadePlotResLevel 
  {
    kDraft          = 0, // Draft
    kPreview        = 1, // Preview
    kNormal         = 2, // Normal
    kPresentation   = 3, // Presentation
    kMaximum        = 4, // Maximum
    kCustom         = 5  // Custom
  };
 
  /** \details
    Adds this PlotSettings object to the PlotSettings dictionary in the specified database.
 
    \param pDb [in]  Pointer to the database.
  */
  void addToPlotSettingsDict(
    OdDbDatabase *pDb);
 
  /** \details
    Returns the name of this PlotSettings object (DXF 1).
  */
  OdString getPlotSettingsName() const;
 
  /** \details
    Sets the name of this PlotSettings object (DXF 1).
    
    \param plotSettingsName [in]  PlotSettings name.  
  */
  void setPlotSettingsName(
    const OdString& plotSettingsName);
 
  /** \details
    Returns the name of the system printer or plot configuration file for this PlotSettings object (DXF 2).
  */
  OdString getPlotCfgName() const;
 
  /** \details
    Returns the margins of the paper for this PlotSettings object.
    
    \param leftMargin [out]  Receives the left margin. 
    \param bottomMargin[out] Receives the bottom margin.
    \param rightMargin [out] Receives the right margin. 
    \param topMargin [out] Receives the top margin.
    
    \remarks
    Margins are measured from their respective edges to the plot area and are independent of plot rotation.
    All distances are returned in millimeters, regardless of the drawing units. 
  */
  void getPlotPaperMargins(
    double& leftMargin, 
    double& bottomMargin,
    double& rightMargin, 
    double& topMargin) const;
 
  /** \details
    Returns the size of the paper for this PlotSettings object (DXF 44, 45).
 
    \remarks
    Paper size is the physical paper size and includes margins.
    All distances are returned in millimeters, regardless of the drawing units. 
  */
  void getPlotPaperSize(
    double& paperWidth, 
    double& paperHeight) const;
 
  /** \details
    Returns the canonical media name for the paper id of this PlotSettings object (DXF 4).
    
    \sa
    OdDbPlotSettingsValidator::getLocaleMediaName()
  */
  OdString getCanonicalMediaName() const;
 
  /** \details
    Returns the plot origin offset for this PlotSettings object (DXF 46, 47).
 
    \param xCoordinate [out]  Receives the X-coordinate of the origin offset.
    \param yCoordinate [out]  Receives the Y-coordinate of the origin offset.
    
    \remarks
    The plot origin offset is measured with respect to the plot margin.
    All distances are returned in millimeters, regardless of the drawing units. 
  */
  void getPlotOrigin(
    double& xCoordinate, 
    double& yCoordinate) const;
 
  /** \details
    Returns the plot paper units used for margins, offsets, paper size, and drawing units of this PlotSettings object (DXF 72).
 
    \remarks
    plotPaperUnits() returns one of the following:
    
    <table>
    Name            Value   Description
    kInches         0       Inches
    kMillimeters    1       Millimeters
    kPixels         2       Pixels
    </table>
  */
  OdDbPlotSettings::PlotPaperUnits plotPaperUnits() const;
 
  /** \details
    Returns whether viewport borders are plotted for this PlotSettings object (DXF 70, bit 0x01).
    
    \remarks
    Returns true if and only if viewport borders are to be plotted.
  */
  bool plotViewportBorders() const;
 
  /** \details
    Controls whether viewport borders are plotted for this PlotSettings object (DXF 70, bit 0x01).
 
    \param plotViewportBorders [in]  True if and only if viewport borders are to be plotted.
  */
  void setPlotViewportBorders(
    bool plotViewportBorders);
 
  /** \details
    Returns whether plotstyles are applied for this PlotSettings object (DXF 70, bit 0x20).
      
    \remarks
    Returns true if and only if plot styles are to be plotted.
  */
  bool plotPlotStyles() const;
 
  /** \details
    Controls whether plotstyles are applied for this PlotSettings object (DXF 70, bit 0x20).
    
    \param plotPlotStyles [in]  True if and only if plot styles are to be plotted.
  */
  void setPlotPlotStyles(
    bool plotPlotStyles);
 
  /** \details
    Returns whether plotstyles display for this PlotSettings object during layout mode (DXF 70, bit 0x02).
  */
  bool showPlotStyles() const;
 
  /** \details
    Controls whether plotstyles display for this PlotSettings object during layout mode (DXF 70, bit 0x02).
 
    \param showPlotStyles [in]  True if and only if plot styles are to be shown.
  */
  void setShowPlotStyles(
    bool showPlotStyles);
 
  /** \details
    Returns the plot rotation for this PlotSettings object (DXF 73).
    
    \remarks
    plotRotation() returns one of the following:
    
    <table>
    Name         Value    Description
    k0degrees    0        No rotation
    k90degrees   1        90° CCW
    k180degrees  2        Inverted°
    k270degrees  3        90° CW
    </table>
  */
  OdDbPlotSettings::PlotRotation plotRotation() const;
 
  /** \details
    Returns true if an only if the plot is to be centered for this PlotSettings object (DXF 70, bit 0x04).
  */
  bool plotCentered() const;
 
  /** \details
    Returns true if and only if the hidden line removal algorithm 
    is to be applied to PaperSpace entities for this PlotSettings object (DXF 70, bit 0x08). 
  */
  bool plotHidden() const;
 
  /** \details
    Controls the application of the hidden line removal algorithm 
    to PaperSpace entities for this PlotSettings object (DXF 70, bit 0x08). 
 
    \param plotHidden [in]  True if and only hidden lines are to be removed.
  */
  void setPlotHidden(bool plotHidden);
 
  /** \details
    Returns the plot type for this PlotSettings Object (DXF 74).
 
    \remarks
    plotType() returns one of the following:
    
    <table>
    Name        Value   Description
    kDisplay    0       Display
    kExtents    1       Extents
    kLimits     2       Limits
    kView       3       View
    kWindow     4       Window
    kLayout     5       Layout
    </table>
  */
  OdDbPlotSettings::PlotType plotType() const;
 
  /** \details
    Returns the corners of the plot window area for this PlotSettings object (DXF 48, 49, 140, 141).
 
    \param xMin [in]  Receives the X-coordinate of the lower-left corner.      
    \param yMin [in]  Receives the Y-coordinate of the lower-left corner.      
    \param xMax [in]  Receives the X-coordinate of the upper-right corner.      
    \param yMax [in]  Receives the Y-coordinate of the upper-right corner.      
    
    \remarks
    The corners define the area to be plotted if and only if plotType == kWindow.
  */
  void getPlotWindowArea(
    double& xMin, 
    double& yMin,
    double& xMax, 
    double& yMax) const;
 
  /** \details
    Returns the plot view name for this PlotSettings object (DXF 6).
 
    \remarks
    This string specifies the named view to be plotted if and only if plotType == kView. 
  */
  OdString getPlotViewName() const;
 
  /** \details
    Returns true if and only if this PlotSettings object uses a standard scale (DXF 70, bit 0x10).
  */
  bool useStandardScale() const;
 
  /** \details
    Returns the custom print scale for this PlotSettings object (DXF 142, 143).
    
    \param numerator [in]  Receives PaperSpace units.
    \param denominator [in]  Receives media units.
    
    \remarks
    The custom print scale always reflects the scale that this PlotSettings object will use to plot.
  */
  void getCustomPrintScale(
    double& numerator, 
    double& denominator) const;
 
  /** \details
    Returns the current style sheet (DXF 7).
  */
  OdString getCurrentStyleSheet() const;
 
  /** \details
    Returns the standard scale type for this PlotSettings object (DXF 75).
    
    \remarks
    stdScaleType() returns one of the of the following
    
    <table>
    Name            Value   Scale
    kScaleToFit     0       Scaled to Fit
    k1_128in_1ft    1       1/128=1'
    k1_64in_1ft     2       1/64=1'
    k1_32in_1ft     3       1/32=1'
    k1_16in_1ft     4       1/16=1'
    k3_32in_1ft     5       3/32=1'
    k1_8in_1ft      6       1/8=1'
    k3_16in_1ft     7       3/16=1'
    k1_4in_1ft      8       1/4=1'
    k3_8in_1ft      9       3/8=1'
    k1_2in_1ft      10      1/2=1'
    k3_4in_1ft      11      3/4=1'
    k1in_1ft        12      1=1'
    k3in_1ft        13      3=1'
    k6in_1ft        14      6=1'
    k1ft_1ft        15      1'=1'
    k1_1            16      1:1
    k1_2            17      1:2
    k1_4            18      1:4
    k1_5            19      1:5
    k1_8            20      1:8
    k1_10           21      1:10
    k1_16           22      1:16
    k1_20           23      1:20
    k1_30           24      1:30
    k1_40           25      1:40
    k1_50           26      1:50
    k1_100          27      1:100
    k2_1            28      2:1
    k4_1            29      4:1
    k8_1            30      8:1
    k10_1           31      10:1
    k100_1          32      100:1
    k1000_1         33      1000:1
    k1and1_2in_1ft  34      1.5"=1'
    </table>
  */
  OdDbPlotSettings::StdScaleType stdScaleType() const;
 
 
  /** \details
    Returns the standard scale, as a floating point value, for this PlotSettings object (DXF 147).
    
    \param standardScale [out]  Receives the standard scale.
  */
  void getStdScale(
    double& standardScale) const;
 
  /** \details
    Returns true if an only if lineweights are scaled for this PlotSettings object (DXF 70, bit 0x40).
  */
  bool scaleLineweights() const;
 
  /** \details
    Controls the scaling of lineweights for this PlotSettings object (DXF 70, bit 0x40).
 
    \param scaleLineweights [in]  True if and only if lineweights are to be scaled.
  */
  void setScaleLineweights(
    bool scaleLineweights);
 
  /** \details
    Returns true if an only if lineweights are printed for this PlotSettings object (DXF 70, bit 0x80).
  */
  bool printLineweights() const;
 
  /** \details
    Controls the printing of lineweights for this PlotSettings object (DXF 70, bit 0x80).
 
    \param printLineweights [in]  True if and only if lineweights are to be printed.
  */
  void setPrintLineweights(bool printLineweights);
 
  /** \details
      TBC.  
  bool textFill() const;
 
  */
 
  /** \details
      TBC.
  void setTextFill(bool textFill);
  */
 
  /** \details
      TBC.
  int getTextQuality() const;
  */
 
  /** \details
      TBC.
  void setTextQuality(int quality);
  */
 
  /** \details
    Returns true if and only if viewports are to be plotted before other objects in PaperSpace
    for this PlotSettings object (DXF 70, bit 0x200).
  */
  bool drawViewportsFirst() const;
 
  /** \details
    Controls the plotting of viewports before other objects in PaperSpace
    for this PlotSettings object (DXF 70, bit 0x200).
    
    \param drawViewportsFirst [in]  True if and only if viewports are to be plotted first.
  */
  void setDrawViewportsFirst(
    bool drawViewportsFirst);
 
  /** \details
    Returns true if and only if this PlotSettings object is of ModelSpace type (DXF 70, bit 0x400).
    
    \remarks
    A PlotSettings object is of either ModelSpace type or PaperSpace type.
  */
  bool modelType() const;
 
  /** \details
    Controls the ModelSpace type of this PlotSettings object (DXF 70, bit 0x400).
    
    \param modelType [in]  True if and only if it is of ModelSpace type.
    
    \remarks
    A PlotSettings object is of either ModelSpace type or PaperSpace type.
  */
  void setModelType(bool modelType);
 
  /** \details
    Returns the top margin of the paper for this PlotSettings object (DXF 43).
  */
  double getTopMargin() const;
 
  /** \details
    Returns the right margin of the paper for this PlotSettings object (DXF 42).
  */
  double getRightMargin() const;
 
  /** \details
    Returns the bottom margin of the paper for this PlotSettings object (DXF 41).
  */
  double getBottomMargin() const;
 
  /** \details
    Returns the left margin of the paper for this PlotSettings object (DXF 40).
  */
  double getLeftMargin() const;
 
  /** \details
    Returns the paper image origin of the paper for this PlotSettings object (DXF 148, 149).
  */
  OdGePoint2d getPaperImageOrigin() const;
 
  /** \details
    Sets the paper image origin (DXF 148, 149).
    \param paperImageOrigin [in]  Paper image origin. 
  */
  void setPaperImageOrigin(OdGePoint2d paperImageOrigin);
 
  // New to 2004 api
 
  /** \details
    Returns the shade plot type for this PlotSettings object (DXF 76).
    
    \remarks
    shadePlotType() returns one of the following:
    
    <table>
    Name           Value  Description
    kAsDisplayed   0      As displayed
    kWireframe     1      Wireframe
    kHidden        2      Hidden lines removed
    kRendered      3      Rendered
    </table>
    
  */
  OdDbPlotSettings::ShadePlotType shadePlot() const;
 
  /** \details
    Sets the shade plot type for this PlotSettings object (DXF 76).
    
    \param shadePlotType [in]  Shade Plot type.
 
    \remarks
    shadePlotType must be one of the following:
    
    <table>
    Name           Value  Description
    kAsDisplayed   0      As displayed
    kWireframe     1      Wireframe
    kHidden        2      Hidden lines removed
    kRendered      3      Rendered
    </table>
    
  */
  OdResult setShadePlot(
    OdDbPlotSettings::ShadePlotType shadePlot);
 
  /** \details
    Returns the shade plot resolution level for this PlotSettings object.
    
    \remarks
    shadePlotResLevel controls the resolution at which shaded and 
    vectorized viewports will plot.
    
    shadePlotResLevel() returns one of the following:
    
    <table>
    Name            Value   Description
    kDraft          0       Draft
    kPreview        1       Preview
    kNormal         2       Normal
    kPresentation   3       Presentation
    kMaximum        4       Maximum
    kCustom         5       Custom
    </table>
 
  */
  OdDbPlotSettings::ShadePlotResLevel shadePlotResLevel() const;
 
  /** \details
    Sets the shade plot resolution level for this PlotSettings object.
    
    \param shadePlotResLevel [in]  Shade plot resolution level.
    
    \remarks
    shadePlotResLevel controls the resolution at which shaded and 
    vectorized viewports will plot.
 
    shadePlotResLevel must be one of the following:
    
    <table>
    Name            Value   Description
    kDraft          0       Draft
    kPreview        1       Preview
    kNormal         2       Normal
    kPresentation   3       Presentation
    kMaximum        4       Maximum
    kCustom         5       Custom
    </table>
 
  */
  void setShadePlotResLevel(
    OdDbPlotSettings::ShadePlotResLevel shadePlotResLevel);
 
  /** \details
    Returns the shade plot custom DPI for this PlotSettings object.
    
    \remarks
    shadePlotCustomDPI specifies the custom resolution at which shaded and 
    vectorized viewports will plot if shadePlotResLevel == ShadePlotResLevel::kCustom.
    
    \note
    shadePlotCustomDPI should be used only if the shade plot resolution level 
    is set to ShadePlotResLevel::kCustom.
  */
  OdInt16 shadePlotCustomDPI() const;
 
  /** \details
    Sets the shade plot custom DPI for this PlotSettings object.
    
    \remarks
    shadePlotCustomDPI specifies the custom resolution at which shaded and 
    vectorized viewports will plot if shadePlotResLevel == ShadePlotResLevel::kCustom.
    
    \note
    shadePlotCustomDPI should be used only if the shade plot resolution level 
    is set to ShadePlotResLevel::kCustom.
  
    \param shadePlotCustomDPI [in]  Shade plot custom DPI.
  */
  void setShadePlotCustomDPI(
    OdInt16 shadePlotCustomDPI);
 
  virtual OdResult subGetClassID(
    void* pClsid) const;
 
  virtual OdResult dwgInFields(
    OdDbDwgFiler* pFiler);
 
  virtual void dwgOutFields(
    OdDbDwgFiler* pFiler) const;
 
  virtual OdResult dxfInFields(
    OdDbDxfFiler* pFiler);
 
  virtual void dxfOutFields(
    OdDbDxfFiler* pFiler) const;
 
  virtual void subClose();
 
  virtual OdResult subErase(
    bool erasing);
  
  virtual void subHandOverTo(
    OdDbObject* pNewObject);
 
  virtual void copyFrom(
    const OdRxObject* pSource);
 
// New in AC2007
 
// Returns the OdDbObjectId of the OdDbVisualStyle or OdDbRenderSettings object
// referenced by this object.
 
  /** \details
    Returns the OdDbObjectId of the OdDbVisualStyle or OdDbRenderSettings object
    referenced by this object.
  */
  OdDbObjectId    shadePlotId() const;
 
  OdResult        setShadePlot(OdDbPlotSettings::ShadePlotType type,
                               OdDbObjectId shadePlotId);
  /** \details
    Controls whether the output is vector-based when using shade plot settings of a viewport.
  */
  bool plotWireframe() const;
  /** \details
    Controls whether the output is raster-based when using shade plot settings of a viewport.
  */
  bool plotAsRaster () const;
 
  /** \details
    Returns true if and only if transparencies plotting is enabled for this OdDbRenderSettings object.
  */
  bool plotTransparency() const;
  /** \details
    Enables or disables transparencies plotting for this OdDbRenderSettings object.
 
    \param bSet [in]  New transparencies plotting setting.
  */
  void setPlotTransparency(bool bSet);
};
 
/** \details
  This template class is a specialization of the OdSmartPtr class for OdDbPlotSettings object pointers.
*/
typedef OdSmartPtr<OdDbPlotSettings> OdDbPlotSettingsPtr;
 
#include "TD_PackPop.h"
 
#endif