跳到主要内容

将配置传播到图纸

VBA宏将参考文档的配置复制到每个副本的图纸中

image: sheets.png

具有多个图纸的图纸{ width=800 }

此VBA宏将复制活动图纸并将参考配置传播到每个副本。

宏将自动在每个新图纸上设置参考配置并根据配置名称重命名图纸。

结果图纸将包含多体零件或装配的所有配置的图纸。

配置

可以通过更改宏的常量值来配置宏

Const TOP_LEVEL_CONFIGS_ONLY As Boolean = False 'True仅处理顶级配置,False处理子配置
Const USE_CORRESPONDING_FLAT_PATTERN_CONF As Boolean = True 'True查找平面图视图的相应SM-FLAT-PATTERN配置,False使用配置As Is
Const GENERATE_MISSING_FLAT_PATTERN_CONF As Boolean = True 'True如果不存在,则自动创建新的SM-FLAT-PATTERN配置,False使用配置As Is

注意事项

  • 宏将跳过处理系统配置(例如焊接As Welded和As Machined,钣金平面图配置和速度包配置)
  • 宏不会为在图纸的默认(第一个)视图中使用的相同配置创建另一个图纸(模板图纸)

钣金平面图

当从用户界面创建平面图的绘图视图时,会自动添加新的特殊配置(SM-FLAT-PATTERN)。此配置将设置为参考配置。通过SOLIDWORKS API分配参考视图时,可以强制将标准配置分配给平面图视图,这将导致显示不正确。用户需要手动重新检查平面图切换或重置参考配置。宏的USE_CORRESPONDING_FLAT_PATTERN_CONF选项允许查找平面图配置(如果存在),并将其用于平面图视图。如果找不到,则可以通过设置宏的GENERATE_MISSING_FLAT_PATTERN_CONF选项自动创建平面图视图。

Const TOP_LEVEL_CONFIGS_ONLY As Boolean = False
Const USE_CORRESPONDING_FLAT_PATTERN_CONF As Boolean = True
Const GENERATE_MISSING_FLAT_PATTERN_CONF As Boolean = True

Dim swApp As SldWorks.SldWorks

Sub main()

Set swApp = Application.SldWorks

Dim swDraw As SldWorks.DrawingDoc

Set swDraw = swApp.ActiveDoc

If Not swDraw Is Nothing Then

Dim swSheet As SldWorks.sheet
Set swSheet = swDraw.GetCurrentSheet

Dim swDefView As SldWorks.view
Set swDefView = GetDefaultView(swDraw, swSheet)

If Not swDefView Is Nothing Then

Dim swRefDoc As SldWorks.ModelDoc2
Set swRefDoc = swDefView.ReferencedDocument

If Not swRefDoc Is Nothing Then

ValidateSheet swSheet, swRefDoc

Dim vConfNames As Variant
vConfNames = GetConfigurations(swRefDoc)

Dim i As Integer

For i = 0 To UBound(vConfNames)

Dim confName As String
confName = CStr(vConfNames(i))

If LCase(GetActualReferencedConfiguration(swDefView)) <> LCase(confName) Then
CopySheetWithConfiguration swDraw, swSheet, confName
End If

Next

Else
Err.Raise vbError, "", "默认视图没有参考文档"
End If

Else
Err.Raise vbError, "", "未找到默认视图"
End If

Else
Err.Raise vbError, "", "打开绘图"
End If

End Sub

Function GetConfigurations(refDoc As SldWorks.ModelDoc2) As Variant

Dim confNames() As String

Dim vConfNames As Variant
vConfNames = refDoc.GetConfigurationNames

Dim i As Integer

For i = 0 To UBound(vConfNames)

Dim confName As String
confName = CStr(vConfNames(i))

Dim swConf As SldWorks.Configuration
Set swConf = refDoc.GetConfigurationByName(confName)

If (Not TOP_LEVEL_CONFIGS_ONLY Or swConf.GetParent() Is Nothing) And swConf.Type = swConfigurationType_e.swConfiguration_Standard Then

If (Not confNames) = -1 Then
ReDim confNames(0)
Else
ReDim Preserve confNames(UBound(confNames) + 1)
End If

confNames(UBound(confNames)) = confName

End If

Next

GetConfigurations = confNames

End Function

Function GetActualReferencedConfiguration(view As SldWorks.view) As String

Dim refConfName As String
refConfName = view.ReferencedConfiguration

Dim swConf As SldWorks.Configuration

Set swConf = view.ReferencedDocument.GetConfigurationByName(refConfName)

If swConf.Type <> swConfigurationType_e.swConfiguration_Standard Then
Set swConf = swConf.GetParent
End If

GetActualReferencedConfiguration = swConf.Name

End Function

Function GetDefaultView(draw As SldWorks.DrawingDoc, sheet As SldWorks.sheet) As SldWorks.view

Dim vViews As Variant

vViews = GetSheetViews(draw, sheet)

If Not IsEmpty(vViews) Then

Dim i As Integer

For i = 0 To UBound(vViews)

Dim swView As SldWorks.view
Set swView = vViews(i)

If UCase(swView.Name) = UCase(sheet.CustomPropertyView) Then
Set GetDefaultView = swView
Exit Function
End If

Next

Set GetDefaultView = vViews(0) '使用第一个
Else
Set GetDefaultView = Nothing
End If

End Function

Sub ValidateSheet(sheet As SldWorks.sheet, refDoc As SldWorks.ModelDoc2)

Dim vViews As Variant
vViews = sheet.GetViews

Dim i As Integer

For i = 0 To UBound(vViews)

Dim swView As SldWorks.view
Set swView = vViews(i)

If Not swView.ReferencedDocument Is refDoc Then
Err.Raise vbError, "", "在" & sheet.GetName & "中引用了不同的模型"
End If

Next

End Sub

Sub CopySheetWithConfiguration(draw As SldWorks.DrawingDoc, sheet As SldWorks.sheet, baseConfName As String)

Const MAX_PASTE_ATEMPTS As Integer = 3

If False <> draw.Extension.SelectByID2(sheet.GetName(), "SHEET", 0, 0, 0, False, 0, Nothing, 0) Then

draw.EditCopy

If TryPasteSheet(draw, MAX_PASTE_ATEMPTS) Then

Dim swNewSheet As SldWorks.sheet
Set swNewSheet = draw.sheet(draw.GetSheetNames()(draw.GetSheetCount() - 1))

Dim vViews As Variant
vViews = GetSheetViews(draw, swNewSheet)

Dim i As Integer

For i = 0 To UBound(vViews)

Dim swView As SldWorks.view
Set swView = vViews(i)

Dim confName As String

If False <> swView.IsFlatPatternView() And USE_CORRESPONDING_FLAT_PATTERN_CONF Then
confName = GetFlatPatternConfiguration(draw, swView.ReferencedDocument, baseConfName, GENERATE_MISSING_FLAT_PATTERN_CONF)
Else
confName = baseConfName
End If

swView.ReferencedConfiguration = confName

RefreshView draw, swView

Next

swNewSheet.SetName baseConfName

Else
Err.Raise vbError, "", "无法粘贴图纸"
End If
Else
Err.Raise vbError, "", "无法选择图纸"
End If

End Sub

Function TryPasteSheet(draw As SldWorks.DrawingDoc, attempts As Integer) As Boolean

Dim curAttemp As Integer
curAttemp = 1

'观察到在某些情况下,第一次尝试粘贴图纸会失败
While False = draw.PasteSheet(swInsertOptions_e.swInsertOption_MoveToEnd, swRenameOptions_e.swRenameOption_Yes)

Debug.Print "第" & curAttemp & "次尝试粘贴图纸失败"

If curAttemp >= attempts Then
TryPasteSheet = False
Exit Function
End If

curAttemp = curAttemp + 1

Wend

TryPasteSheet = True

End Function

'在某些情况下,直到刷新视图后,视图的新配置才会更新
Sub RefreshView(draw As SldWorks.DrawingDoc, swView As SldWorks.view)

If SelectDrawingView(draw, swView) Then

draw.SuppressView

If SelectDrawingView(draw, swView) Then
draw.UnsuppressView
End If

End If

End Sub

Function GetFlatPatternConfiguration(draw As SldWorks.DrawingDoc, refDoc As SldWorks.ModelDoc2, baseConfName As String, allowCreateIfNotExist As Boolean) As String

Dim swConf As SldWorks.Configuration
Set swConf = refDoc.GetConfigurationByName(baseConfName)

If swConf.Type <> swConfigurationType_e.swConfiguration_SheetMetal Then

Dim vChildrenConfs As Variant

vChildrenConfs = swConf.GetChildren()

Dim i As Integer

If Not IsEmpty(vChildrenConfs) Then

For i = 0 To UBound(vChildrenConfs)

Dim swChildConf As SldWorks.Configuration
Set swChildConf = vChildrenConfs(i)

If swChildConf.Type = swConfigurationType_e.swConfiguration_SheetMetal Then
Debug.Print "为" & baseConfName & "使用平面图配置" & swChildConf.Name
GetFlatPatternConfiguration = swChildConf.Name
Exit Function
End If

Next

End If

If allowCreateIfNotExist Then
Debug.Print "为" & baseConfName & "创建平面图配置"
GetFlatPatternConfiguration = CreateFlatPatternConfiguration(draw, refDoc, baseConfName)
Else
Debug.Print "未找到" & baseConfName & "的平面图配置"
GetFlatPatternConfiguration = baseConfName
End If
Else
GetFlatPatternConfiguration = baseConfName
End If

End Function

Function CreateFlatPatternConfiguration(draw As SldWorks.DrawingDoc, refDoc As SldWorks.ModelDoc2, baseConfName As String) As String

Dim swFlatPatternView As SldWorks.view
Set swFlatPatternView = draw.CreateFlatPatternViewFromModelView3(refDoc.GetPathName(), baseConfName, 0, 0, 0, True, False)

If Not swFlatPatternView Is Nothing Then
CreateFlatPatternConfiguration = swFlatPatternView.ReferencedConfiguration

If SelectDrawingView(draw, swFlatPatternView) Then
If False = draw.Extension.DeleteSelection2(swDeleteSelectionOptions_e.swDelete_Absorbed) Then
Err.Raise vbError, "", "删除临时视图失败"
End If
Else
Err.Raise vbError, "", "选择要删除的临时视图失败"
End If

Else
Err.Raise vbError, "", "为" & refDoc.GetPathName() & " (" & baseConfName & ")创建临时平面图视图失败"
End If

End Function

Function SelectDrawingView(draw As SldWorks.ModelDoc2, view As SldWorks.view) As Boolean
SelectDrawingView = False <> draw.Extension.SelectByID2(view.Name, "DRAWINGVIEW", 0, 0, 0, False, -1, Nothing, swSelectOption_e.swSelectOptionDefault)
End Function

Function GetSheetViews(draw As SldWorks.DrawingDoc, sheet As SldWorks.sheet) As Variant

'ISheet::GetViews还返回视图面板中的视图

Dim vSheets As Variant

vSheets = draw.GetViews

Dim i As Integer

For i = 0 To UBound(vSheets)

Dim vViews As Variant
vViews = vSheets(i)

Dim swSheetView As SldWorks.view
Set swSheetView = vViews(0)

If swSheetView.GetName2() = sheet.GetName() Then

If UBound(vViews) > 0 Then

Dim swViews() As SldWorks.view
ReDim swViews(UBound(vViews) - 1)

Dim j As Integer

For j = 0 To UBound(swViews)
Set swViews(j) = vViews(j + 1)
Next

GetSheetViews = swViews
Exit Function

Else
Err.Raise vbError, "", sheet.GetName & "中未找到绘图视图"
End If

End If

Next

Err.Raise vbError, "", "无法从" & sheet.GetName & "获取绘图视图"

End Function