This commit is contained in:
AJ
2019-03-08 07:48:53 -05:00
parent 47330eb2e0
commit 8e2a8625d5
12 changed files with 54 additions and 64 deletions

View File

@@ -1,5 +1,4 @@
using OfficeOpenXml;
using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
using System;
using System.Collections.Generic;
@@ -97,7 +96,6 @@ namespace ExportDXF.Forms
private void button2_Click(object sender, EventArgs e)
{
}
private void Worker_DoWork(object sender, DoWorkEventArgs e)
@@ -437,7 +435,7 @@ namespace ExportDXF.Forms
var drawingModel = templateDrawing as ModelDoc2;
drawingModel.ViewZoomtofit2();
if (HideModelSketches(view))
{
// delete the current view that has sketches shown
@@ -674,8 +672,6 @@ namespace ExportDXF.Forms
.Cast<Component2>()
.Where(c => !c.IsHidden(true));
var componentGroups = assemblyComponents
.GroupBy(c => c.GetTitle() + c.ReferencedConfiguration);
@@ -730,4 +726,4 @@ namespace ExportDXF.Forms
public string Name { get; set; }
public IViewFlipDecider ViewFlipDecider { get; set; }
}
}
}