1b31dc18e8
* fixes * Generate empty constructors for testing
21 lines
569 B
C#
21 lines
569 B
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class LayoutRuleFixedDistance : Autodesk.Revit.DB.LayoutRule
|
|
{
|
|
public LayoutRuleFixedDistance() { }
|
|
|
|
public LayoutRuleFixedDistance(System.Double spacing, Autodesk.Revit.DB.BeamSystemJustifyType justifyType) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.BeamSystemJustifyType JustifyType
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Double Spacing
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|