Exemple #1
0
        public void ReadCrcEnabledTest(string test)
        {
            DwgReaderFlags flags = DwgReaderFlags.CheckCrc;

            CadDocument doc = DwgReader.Read(test, flags, this.onNotification);
        }
 public DwgDocumentBuilder(CadDocument document, DwgReaderFlags flags, NotificationEventHandler notification = null)
     : base(document, notification)
 {
     this.Flags = flags;
 }