Files
speckle-sharp-host-apis/Speckle.Revit2022.Fakes/generated/Autodesk.Revit.DB.Analysis.ViewSystemsAnalysisReport.s.cs
Adam Hathcock 283e98faa0 Revit 2022 (#32)
* Fix building for 2023 revit fakes

* add Revit 2022

* fmt
2024-07-18 08:49:17 +01:00

44 lines
1.5 KiB
C#

namespace Autodesk.Revit.DB.Analysis;
public partial class ViewSystemsAnalysisReport : Autodesk.Revit.DB.View
{
public ViewSystemsAnalysisReport() { }
public static Autodesk.Revit.DB.Analysis.ViewSystemsAnalysisReport Create(
Autodesk.Revit.DB.Document document,
System.String viewName
) => throw new System.NotImplementedException();
public virtual void RequestSystemsAnalysis(Autodesk.Revit.DB.Analysis.SystemsAnalysisOptions options) =>
throw new System.NotImplementedException();
public static Autodesk.Revit.DB.ElementId GetLatestSystemsAnalysisReport(Autodesk.Revit.DB.Document document) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsAnalysisCompleted() => throw new System.NotImplementedException();
public virtual System.String GetReportContent() => throw new System.NotImplementedException();
public virtual System.DateTime AnalysisDateAndTime
{
get => throw new System.NotImplementedException();
}
public virtual Autodesk.Revit.DB.Analysis.SystemsAnalysisReportStyle ReportStyle
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String SystemsAnalysisOutputFolder
{
get => throw new System.NotImplementedException();
}
public virtual System.String WeatherFile
{
get => throw new System.NotImplementedException();
}
public virtual System.String SystemsAnalysisWorkflowFile
{
get => throw new System.NotImplementedException();
}
}