I am trying to convert a C# code (for revit API) to python but to no luck. The C# code looks:
public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
Document doc = commandData.Application.ActiveUIDocument.Document;
Reference r = commandData.Application.ActiveUIDocument.Selection.PickObject(Autodesk.Revit.UI.Selection.ObjectType.Element, "please select wall");
IEnumerable<Element> associate = new FilteredElementCollector(doc).OfClass(typeof(FamilyInstance)).Where(m=>(m as FamilyInstance).Host.Id == r.ElementId);
return Result.Succeeded;
}
what I am having problem with is the part .Where(m=>(m as FamilyInstance).Host.Id == r.ElementId);
I use pyrevit.
can anyone suggest how to do it?
thank you!
You can conceivably convert C# code into python in places like csharp-to-python or using SharpDevelop Macro Editor.
The conversion will not run because certain classes are constructed differently in Python scripts
If you want to write what you have there in python first need some different declarations. Usings example:
Then Document & UIApp as an example need to be created using Document Manager:
For Current Selection this article should do the trick
For the portion of the code you have a problem with:
Remember you are using LINQ. For python (unless i'm mistaken) you would need something like this LINQ in Python.
For transactions usually:
Assemble the code and try to run it in RevitPythonShell.
Just remember you can use C# assemblies directly in PyRevit here is a link