篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Normteil zu Bauteil相关的知识,希望对你有一定的参考价值。
' Das Makro löscht das 5 Property Set
' und macht so aus Normteilen die
' normale, editierbare Bauteile
' Funktioniert in der Bauteilumgebung
' Das Bauteil wird nicht automatisch gespeichert
'
' Igor Zupevc, FX64, 12.12.2013
Sub ContentToNormalPart()
If (ThisApplication.ActiveDocumentType <> kPartDocumentObject) Then
MsgBox "Das Makro funktioniert nur in der Bauteilumgebung.", vbExclamation, "ContentToNormalPart"
Exit Sub
End If
On Error Resume Next
ThisApplication.ActiveDocument.PropertySets(5).Delete
If (Err.Number <> 0) Then
MsgBox "Ein Fehler ist aufgetreten. Das Bauteil ist vermutlich kein Normteil.", vbCritical, "ContentToNormalPart"
Else
MsgBox "Das fünfte Property Set wurde erfolgreich entfernt. Das Bauteil ist kein Normteil mehr.", vbInformation, "ContentToNormalPart"
End If
End Sub
以上是关于text Normteil zu Bauteil的主要内容,如果未能解决你的问题,请参考以下文章