283e98faa0
* Fix building for 2023 revit fakes * add Revit 2022 * fmt
39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
namespace Autodesk.Revit.DB.Analysis;
|
|
|
|
public partial class EnergyAnalysisDetailModelOptions : System.IDisposable
|
|
{
|
|
public EnergyAnalysisDetailModelOptions() { }
|
|
|
|
public virtual void Dispose() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsValidObject
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual System.Boolean ExportMullions
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean SimplifyCurtainSystems
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean IncludeShadingSurfaces
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual Autodesk.Revit.DB.Analysis.EnergyAnalysisDetailModelTier Tier
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual Autodesk.Revit.DB.Analysis.EnergyModelType EnergyModelType
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|