343e627737
* basics for revit 2024 * run generator first time * copied fill ins from 2023
29 lines
736 B
C#
29 lines
736 B
C#
namespace Autodesk.Revit.DB.Analysis;
|
|
|
|
public partial class BuildingEnvelopeAnalyzerOptions : System.IDisposable
|
|
{
|
|
public BuildingEnvelopeAnalyzerOptions() { }
|
|
|
|
public virtual void Dispose() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsValidObject
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual System.Double GridCellSize
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean OptimizeGridCellSize
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean AnalyzeEnclosedSpaceVolumes
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|