We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3eb33ee commit bc7b102Copy full SHA for bc7b102
ACadSharp.Examples/ReaderExamples.cs
@@ -50,5 +50,18 @@ public static void ReadEntitiesFromDxf(string file)
50
51
doc.Entities.AddRange(entities);
52
}
53
+
54
+ /// <summary>
55
+ /// Read the tables section from a dxf file.
56
+ /// </summary>
57
+ /// <param name="file"></param>
58
+ public static void ReadTablesFromDxf(string file)
59
+ {
60
+ using (DxfReader reader = new DxfReader(file))
61
62
+ reader.OnNotification += NotificationHelper.LogConsoleNotification;
63
+ CadDocument doc = reader.ReadTables();
64
+ }
65
66
67
0 commit comments