283e98faa0
* Fix building for 2023 revit fakes * add Revit 2022 * fmt
18 lines
471 B
C#
18 lines
471 B
C#
namespace Autodesk.Revit.Creation;
|
|
|
|
public partial class AreaCreationData
|
|
{
|
|
public AreaCreationData() { }
|
|
|
|
public AreaCreationData(System.Object proxy) => throw new System.NotImplementedException();
|
|
|
|
public AreaCreationData(Autodesk.Revit.DB.ViewPlan areaView, Autodesk.Revit.DB.UV point) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.UV TagPoint
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|