1b31dc18e8
* fixes * Generate empty constructors for testing
33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class RepeatingReferenceSource : System.IDisposable
|
|
{
|
|
public RepeatingReferenceSource() { }
|
|
|
|
public static System.Boolean HasRepeatingReferenceSource(
|
|
Autodesk.Revit.DB.Document document,
|
|
Autodesk.Revit.DB.ElementId elementId
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public static Autodesk.Revit.DB.RepeatingReferenceSource GetDefaultRepeatingReferenceSource(
|
|
Autodesk.Revit.DB.Document document,
|
|
Autodesk.Revit.DB.ElementId elementId
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.RepeaterBounds GetBounds() => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.Reference GetReference(Autodesk.Revit.DB.RepeaterCoordinates coordinates) =>
|
|
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.Int32 DimensionCount
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|