Files
speckle-sharp-host-apis/Speckle.Revit2022.Fakes/generated/Autodesk.Revit.DB.TextNoteOptions.s.cs
T
Adam Hathcock 283e98faa0 Revit 2022 (#32)
* Fix building for 2023 revit fakes

* add Revit 2022

* fmt
2024-07-18 08:49:17 +01:00

41 lines
1.1 KiB
C#

namespace Autodesk.Revit.DB;
public partial class TextNoteOptions : System.IDisposable
{
public TextNoteOptions() { }
public TextNoteOptions(Autodesk.Revit.DB.ElementId typeId) => throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean IsValidObject
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean KeepRotatedTextReadable
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.VerticalTextAlignment VerticalAlignment
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.HorizontalTextAlignment HorizontalAlignment
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Double Rotation
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.ElementId TypeId
{
get => throw new System.NotImplementedException();
set { }
}
}