Files
Adam Hathcock 283e98faa0 Revit 2022 (#32)
* Fix building for 2023 revit fakes

* add Revit 2022

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

34 lines
1.2 KiB
C#

namespace Autodesk.Revit.DB;
public partial class PhaseArray : Autodesk.Revit.DB.APIObject, System.Collections.IEnumerable
{
public PhaseArray() { }
public virtual void Clear() => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.PhaseArrayIterator ForwardIterator() => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.PhaseArrayIterator ReverseIterator() => throw new System.NotImplementedException();
public virtual System.Collections.IEnumerator GetEnumerator() => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.Phase get_Item(System.Int32 index) => throw new System.NotImplementedException();
public virtual void set_Item(System.Int32 index, Autodesk.Revit.DB.Phase item) =>
throw new System.NotImplementedException();
public virtual void Append(Autodesk.Revit.DB.Phase item) => throw new System.NotImplementedException();
public virtual void Insert(Autodesk.Revit.DB.Phase item, System.Int32 index) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsEmpty
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 Size
{
get => throw new System.NotImplementedException();
}
}