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

* add Revit 2022

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

64 lines
2.0 KiB
C#

namespace Autodesk.Revit.DB.Analysis;
public partial class AnalysisResultSchema : System.IDisposable
{
public AnalysisResultSchema() { }
public AnalysisResultSchema(System.String name, System.String description) =>
throw new System.NotImplementedException();
public AnalysisResultSchema(Autodesk.Revit.DB.Analysis.AnalysisResultSchema other) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsEqual(Autodesk.Revit.DB.Analysis.AnalysisResultSchema other) =>
throw new System.NotImplementedException();
public virtual void SetUnits(
System.Collections.Generic.IList<System.String> names,
System.Collections.Generic.IList<System.Double> multipliers
) => throw new System.NotImplementedException();
public virtual System.Int32 GetNumberOfUnits() => throw new System.NotImplementedException();
public virtual System.String GetUnitsName(System.Int32 index) => throw new System.NotImplementedException();
public virtual System.Double GetUnitsMultiplier(System.Int32 index) => throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean IsValidObject
{
get => throw new System.NotImplementedException();
}
public virtual System.Double Scale
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Int32 CurrentUnits
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean IsVisible
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.ElementId AnalysisDisplayStyleId
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String Description
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String Name
{
get => throw new System.NotImplementedException();
set { }
}
}