integrate Revit 2025 SDK

This commit is contained in:
Jeremy Tammik
2024-04-11 13:47:20 +02:00
parent e786953544
commit f414362f2b
889 changed files with 26676 additions and 26865 deletions
@@ -241,8 +241,8 @@ Public Class RotateFramingObjects
End If
Dim rotateResult As Integer = pointLocation.Rotate(rotateAxis, rotateDegree)
If 0 = rotateResult Then
TaskDialog.Show("Revit", "Rotate Failed")
End If
UI.TaskDialog.Show("Revit", "Rotate Failed")
End If
End If
End If
Next
@@ -250,8 +250,8 @@ Public Class RotateFramingObjects
transaction.Commit()
Catch ex As Exception
TaskDialog.Show("Revit", ("Rotate failed! " & ex.Message))
transaction.RollBack()
UI.TaskDialog.Show("Revit", ("Rotate failed! " & ex.Message))
transaction.RollBack()
End Try
End Sub