Files
speckle-sharp-host-apis/Speckle.Revit2024.Fakes/generated/Autodesk.Revit.DB.MultiReferenceAnnotationType.s.cs
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

49 lines
1.6 KiB
C#

namespace Autodesk.Revit.DB;
public partial class MultiReferenceAnnotationType : Autodesk.Revit.DB.ElementType
{
public MultiReferenceAnnotationType() { }
public static Autodesk.Revit.DB.MultiReferenceAnnotationType CreateDefault(Autodesk.Revit.DB.Document document) =>
throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.ElementId GetAllowedTagCategory() => throw new System.NotImplementedException();
public virtual System.Boolean IsAllowedTagType(Autodesk.Revit.DB.ElementId tagTypeId) =>
throw new System.NotImplementedException();
public static System.Boolean IsAllowedTagCategory(Autodesk.Revit.DB.ElementId tagCategoryId) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsAllowedReferenceCategory(Autodesk.Revit.DB.ElementId referenceCategoryId) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsAllowedDimensionStyle(Autodesk.Revit.DB.ElementId dimensionStyleId) =>
throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.ElementId DimensionStyleId
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean ShowDimensionText
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Boolean GroupTagHeads
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.ElementId TagTypeId
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.ElementId ReferenceCategoryId
{
get => throw new System.NotImplementedException();
}
}