1b31dc18e8
* fixes * Generate empty constructors for testing
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 { }
|
|
}
|
|
}
|