1b31dc18e8
* fixes * Generate empty constructors for testing
37 lines
1.4 KiB
C#
37 lines
1.4 KiB
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class IntersectionResultArray : Autodesk.Revit.DB.APIObject, System.Collections.IEnumerable
|
|
{
|
|
public IntersectionResultArray() { }
|
|
|
|
public virtual void Clear() => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.IntersectionResultArrayIterator ForwardIterator() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.IntersectionResultArrayIterator ReverseIterator() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual System.Collections.IEnumerator GetEnumerator() => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.IntersectionResult get_Item(System.Int32 index) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual void set_Item(System.Int32 index, Autodesk.Revit.DB.IntersectionResult item) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual void Append(Autodesk.Revit.DB.IntersectionResult item) => throw new System.NotImplementedException();
|
|
|
|
public virtual void Insert(Autodesk.Revit.DB.IntersectionResult 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();
|
|
}
|
|
}
|