1b31dc18e8
* fixes * Generate empty constructors for testing
36 lines
1005 B
C#
36 lines
1005 B
C#
namespace Autodesk.Revit.DB.Architecture;
|
|
|
|
public partial class PostPattern : System.IDisposable
|
|
{
|
|
public PostPattern() { }
|
|
|
|
public virtual void Dispose() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsValidObject
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual Autodesk.Revit.DB.Architecture.BreakCornerCondition CornerPostCondition
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Double CornerPostAngle
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual Autodesk.Revit.DB.Architecture.BalusterInfo CornerPost
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual Autodesk.Revit.DB.Architecture.BalusterInfo EndPost
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual Autodesk.Revit.DB.Architecture.BalusterInfo StartPost
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|