Files
speckle-sharp-host-apis/Speckle.Revit2024.Fakes/generated/Autodesk.Revit.DB.InSessionViewSheetSet.s.cs
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

35 lines
944 B
C#

namespace Autodesk.Revit.DB;
public partial class InSessionViewSheetSet : Autodesk.Revit.DB.IViewSheetSet, System.IDisposable
{
public InSessionViewSheetSet() { }
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean IsAutomatic
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.ElementId ViewOrganizationId
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.ElementId SheetOrganizationId
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Collections.Generic.IReadOnlyList<Autodesk.Revit.DB.View> OrderedViewList
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.ViewSet Views
{
get => throw new System.NotImplementedException();
set { }
}
}