Files
Adam Hathcock 343e627737 Revit 2024 (#31)
* basics for revit 2024

* run generator first time

* copied fill ins from 2023
2024-07-12 09:28:05 +01:00

36 lines
1.3 KiB
C#

namespace Autodesk.Revit.DB;
public partial class EdgeArrayArray : Autodesk.Revit.DB.APIObject, System.Collections.IEnumerable
{
public EdgeArrayArray() { }
public virtual void Clear() => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.EdgeArrayArrayIterator ForwardIterator() =>
throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.EdgeArrayArrayIterator ReverseIterator() =>
throw new System.NotImplementedException();
public virtual System.Collections.IEnumerator GetEnumerator() => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.EdgeArray get_Item(System.Int32 index) => throw new System.NotImplementedException();
public virtual void set_Item(System.Int32 index, Autodesk.Revit.DB.EdgeArray item) =>
throw new System.NotImplementedException();
public virtual void Append(Autodesk.Revit.DB.EdgeArray item) => throw new System.NotImplementedException();
public virtual void Insert(Autodesk.Revit.DB.EdgeArray 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();
}
}