283e98faa0
* Fix building for 2023 revit fakes * add Revit 2022 * fmt
53 lines
1.5 KiB
C#
53 lines
1.5 KiB
C#
namespace Autodesk.Revit.DB.Analysis;
|
|
|
|
public partial class EnergyAnalysisOpening : Autodesk.Revit.DB.Element
|
|
{
|
|
public EnergyAnalysisOpening() { }
|
|
|
|
public virtual Autodesk.Revit.DB.Analysis.EnergyAnalysisSurface GetAnalyticalSurface() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.Analysis.Polyloop GetPolyloop() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.String OpeningId
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual System.String OriginatingElementDescription
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual Autodesk.Revit.DB.XYZ Corner
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual Autodesk.Revit.DB.Analysis.EnergyAnalysisOpeningType OpeningType
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual System.String CADLinkUniqueId
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual System.String CADObjectUniqueId
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual System.String OpeningName
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual Autodesk.Revit.DB.Analysis.gbXMLOpeningType Type
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual System.Double Height
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual System.Double Width
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|