343e627737
* basics for revit 2024 * run generator first time * copied fill ins from 2023
34 lines
1.2 KiB
C#
34 lines
1.2 KiB
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class FormArray : Autodesk.Revit.DB.APIObject, System.Collections.IEnumerable
|
|
{
|
|
public FormArray() { }
|
|
|
|
public virtual void Clear() => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.FormArrayIterator ForwardIterator() => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.FormArrayIterator ReverseIterator() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Collections.IEnumerator GetEnumerator() => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.Form get_Item(System.Int32 index) => throw new System.NotImplementedException();
|
|
|
|
public virtual void set_Item(System.Int32 index, Autodesk.Revit.DB.Form item) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual void Append(Autodesk.Revit.DB.Form item) => throw new System.NotImplementedException();
|
|
|
|
public virtual void Insert(Autodesk.Revit.DB.Form 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();
|
|
}
|
|
}
|