' ' (C) Copyright 2003-2019 by Autodesk, Inc. ' ' Permission to use, copy, modify, and distribute this software in ' object code form for any purpose and without fee is hereby granted, ' provided that the above copyright notice appears in all copies and ' that both that copyright notice and the limited warranty and ' restricted rights notice below appear in all supporting ' documentation. ' ' AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS. ' AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF ' MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC. ' DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE ' UNINTERRUPTED OR ERROR FREE. ' ' Use, duplication, or disclosure by the U.S. Government is subject to ' restrictions set forth in FAR 52.227-19 (Commercial Computer ' Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii) ' (Rights in Technical Data and Computer Software), as applicable. ' Imports System Imports Autodesk Imports Autodesk.Revit.DB Imports Autodesk.Revit.UI Imports Autodesk.Revit.ApplicationServices ''' ''' Demonstrate how a basic ExternalCommand can be added to the Revit user interface. ''' And demonstrate how to create a Revit style dialog. ''' _ _ _ Public Class Command ' All Autodesk Revit external commands must support this interface Implements Autodesk.Revit.UI.IExternalCommand ''' ''' Implement this method as an external command for Revit. ''' ''' An object that is passed to the external application ''' which contains data related to the command, ''' such as the application object and active view. ''' A message that can be set by the external application ''' which will be displayed if a failure or cancellation is returned by ''' the external command. ''' A set of elements to which the external application ''' can add elements that are to be highlighted in case of failure or cancellation. ''' Return the status of the external command. ''' A result of Succeeded means that the API external method functioned as expected. ''' Cancelled can be used to signify that the user cancelled the external operation ''' at some point. Failure should be returned if the application is unable to proceed with ''' the operation. Public Function Execute(ByVal commandData As Autodesk.Revit.UI.ExternalCommandData, _ ByRef message As String, ByVal elements As Autodesk.Revit.DB.ElementSet) _ As Autodesk.Revit.UI.Result Implements Autodesk.Revit.UI.IExternalCommand.Execute ' NOTES: Anything can be done in this method, such as create a message box, ' a task dialog or fetch some information from revit and so on. ' We mainly use the task dialog for example. ' Get the application and document from external command data. Dim app As Application app = commandData.Application.Application Dim activeDoc As Document activeDoc = commandData.Application.ActiveUIDocument.Document ' Study how to create a revit style dialog using task dialog API by following code snippet. ' Creates a Revit task dialog to communicate information to the interactive user. Dim mainDialog As TaskDialog mainDialog = New TaskDialog("Hello, Revit!") mainDialog.MainInstruction = "Hello, Revit!" mainDialog.MainContent = _ "This sample shows how a basic ExternalCommand can be added to the Revit user interface." _ + " It uses a Revit task dialog to communicate information to the interactive user.\n" _ + "The command links below open additional task dialogs with more information." ' Add commmandLink to task dialog mainDialog.AddCommandLink(TaskDialogCommandLinkId.CommandLink1, _ "View information about the Revit installation") mainDialog.AddCommandLink(TaskDialogCommandLinkId.CommandLink2, _ "View information about the active document") ' Set common buttons and default button. If no CommonButton or CommandLink is added, ' task dialog will show a Close button by default. mainDialog.CommonButtons = Autodesk.Revit.UI.TaskDialogCommonButtons.Close mainDialog.DefaultButton = Autodesk.Revit.UI.TaskDialogResult.Close ' Set footer text. Footer text is usually used to link to the help document. mainDialog.FooterText = _ "" _ + "Click here for the Revit API Developer Center" Dim tResult As Autodesk.Revit.UI.TaskDialogResult tResult = mainDialog.Show() ' If the user clicks the first command link, a simple Task Dialog ' with only a Close button shows information about the Revit installation. If (Autodesk.Revit.UI.TaskDialogResult.CommandLink1 = tResult) Then Dim dialog_CommandLink1 As TaskDialog dialog_CommandLink1 = New TaskDialog("Revit Build Information") dialog_CommandLink1.MainInstruction = _ "Revit Version Name is: " + app.VersionName + Chr(13) _ + "Revit Version Number is: " + app.VersionNumber + Chr(13) _ + "Revit Version Build is: " + app.VersionBuild dialog_CommandLink1.Show() ' If the user clicks the second command link, a simple Task Dialog ' created by static method shows information about the active document. ElseIf (Autodesk.Revit.UI.TaskDialogResult.CommandLink2 = tResult) Then TaskDialog.Show("Active Document Information", _ "Active document is: " + activeDoc.Title + Chr(13) _ + "Active view name is: " + activeDoc.ActiveView.Name) End If Return Autodesk.Revit.UI.Result.Succeeded End Function End Class