Files
Adam Hathcock 343e627737 Revit 2024 (#31)
* basics for revit 2024

* run generator first time

* copied fill ins from 2023
2024-07-12 09:28:05 +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 { }
}
}