TableLayer.cs 633 B

12345678910111213141516171819202122232425262728293031
  1. using FastReport.Export.Dxf.Groups;
  2. namespace FastReport.Export.Dxf.Sections.Tables
  3. {
  4. public class TableLayer : TableBase
  5. {
  6. #region Public Constructors
  7. // 0
  8. // TABLE
  9. // 2
  10. // LAYER
  11. // 70
  12. // 2
  13. // 6
  14. // CONTINUOUS
  15. // 2
  16. // Layer_1
  17. // 0
  18. // ENDTAB
  19. public TableLayer() : base("LAYER")
  20. {
  21. StartTable.Add(GroupUtils.CreateName("LAYER"));
  22. AddGroup(70, 2);
  23. AddGroup(6, "CONTINUOUS");
  24. AddGroup(2, "Layer_1");
  25. }
  26. #endregion Public Constructors
  27. }
  28. }