343e627737
* basics for revit 2024 * run generator first time * copied fill ins from 2023
76 lines
2.7 KiB
C#
76 lines
2.7 KiB
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class MultiReferenceAnnotationOptions : System.IDisposable
|
|
{
|
|
public MultiReferenceAnnotationOptions() { }
|
|
|
|
public MultiReferenceAnnotationOptions(Autodesk.Revit.DB.MultiReferenceAnnotationType multiReferenceAnnotationType) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsAllowedDimensionStyleType(Autodesk.Revit.DB.DimensionStyleType dimensionStyleType) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual System.Collections.Generic.IList<Autodesk.Revit.DB.Reference> GetAdditionalReferencesToDimension() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual void SetAdditionalReferencesToDimension(
|
|
System.Collections.Generic.IList<Autodesk.Revit.DB.Reference> referencesToDimension
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean ReferencesDontMatchReferenceCategory(
|
|
System.Collections.Generic.IList<Autodesk.Revit.DB.Reference> references
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Collections.Generic.ICollection<Autodesk.Revit.DB.ElementId> GetElementsToDimension() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual void SetElementsToDimension(
|
|
System.Collections.Generic.ICollection<Autodesk.Revit.DB.ElementId> elementsToDimension
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean ElementsMatchReferenceCategory(
|
|
System.Collections.Generic.ICollection<Autodesk.Revit.DB.ElementId> elements
|
|
) => 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 TagHasLeader
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual Autodesk.Revit.DB.XYZ TagHeadPosition
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual Autodesk.Revit.DB.DimensionStyleType DimensionStyleType
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual Autodesk.Revit.DB.XYZ DimensionLineOrigin
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual Autodesk.Revit.DB.XYZ DimensionLineDirection
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual Autodesk.Revit.DB.XYZ DimensionPlaneNormal
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual Autodesk.Revit.DB.MultiReferenceAnnotationType MultiReferenceAnnotationType
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|