Revit 2026 API
Revit |
Looks up and retrieves the Revit command id with the given id string.
Namespace: Autodesk.Revit.UI
Assembly: RevitAPIUI (in RevitAPIUI.dll) Version: 26.0.4.0 (26.0.4.0)
Syntax
public static RevitCommandId LookupCommandId( string name )
Public Shared Function LookupCommandId ( name As String ) As RevitCommandId
public: static RevitCommandId^ LookupCommandId( String^ name )
static member LookupCommandId : name : string -> RevitCommandId
Parameters
- name String
- he Revit command name. Refer to the entries in the Revit journal to find the string to use for a particular command.
Return Value
RevitCommandIdThe Revit command id. Returning "null" if a command with the given name was not found.
| Exception | Condition |
|---|---|
| ArgumentNullException | A non-optional argument was null |
See Also