343e627737
* basics for revit 2024 * run generator first time * copied fill ins from 2023
35 lines
944 B
C#
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 { }
|
|
}
|
|
}
|