283e98faa0
* Fix building for 2023 revit fakes * add Revit 2022 * fmt
41 lines
1.1 KiB
C#
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 { }
|
|
}
|
|
}
|