Skip to content

Update Category.cs #3030

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/Libraries/RevitNodes/Elements/Category.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,28 @@ public static Category ById(long id)
throw new ArgumentException(Properties.Resources.InvalidCategory);
}
}
/// <summary>
/// Gets Revit Built-in category from current document based on category Id
/// </summary>
/// <param name="id">Category Id as ElementId</param>
/// <returns>Category if present in current document.</returns>
[IsVisibleInDynamoLibrary(false)]
public static Category ById(ElementId categoryId)
{
try
{
var document = DocumentManager.Instance.CurrentDBDocument;
Autodesk.Revit.DB.Category category = Autodesk.Revit.DB.Category.GetCategory(document, categoryId);
if(null == category)
throw new ArgumentException(Properties.Resources.InvalidCategory);

return new Category(category);
}
catch
{
throw new ArgumentException(Properties.Resources.InvalidCategory);
}
}
#endregion

public override string ToString()
Expand Down