Message 1 of 7

Not applicable
02-21-2016
02:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I would like to perform an Energy analysis on Revit model and retrieve the generated measurements for further statistical calculations. Is this possible through Revit API ?
I was only able to get the minimum and maximum measurements through this code:
SpatialFieldManager sfm = SpatialFieldManager.GetSpatialFieldManager(doc.ActiveView); int num = sfm.NumberOfMeasurements; double min = sfm.GetMinimum(2, true); double max = sfm.GetMaximum(2, true);
Thanks
Solved! Go to Solution.