d482bf1087
* Fake starting to work * mostly works, need structs and enums * structs and initial Revit 2023 checkin * fix up other projects * Add Architecture * add Revit UI * add properties * add enum names and put in previously ignored virtual methods * more dealing with vritual/new * account for non-virtual structs and regenerate revit * Implement exclusions for types that are too hard * trying to add constructors * add static properties but can't be virtual so can't be used * base constructors and more exclusions * split things out * add interfaces and did some implementations * More fixes and more namespaces * add non-standard props * add point clouds and fields for structs * add exceptions * generate empty constructors * fmt
65 lines
2.6 KiB
C#
65 lines
2.6 KiB
C#
namespace Autodesk.Revit.DB.Structure;
|
|
|
|
public partial class StructuralConnectionHandlerType : Autodesk.Revit.DB.ElementType
|
|
{
|
|
public virtual System.Boolean IsCustom() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsGeneric() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsDetailed() => throw new System.NotImplementedException();
|
|
|
|
public static Autodesk.Revit.DB.ElementId CreateDefaultStructuralConnectionHandlerType(
|
|
Autodesk.Revit.DB.Document pADoc
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public static Autodesk.Revit.DB.ElementId GetDefaultConnectionHandlerType(Autodesk.Revit.DB.Document pADoc) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public static Autodesk.Revit.DB.Structure.StructuralConnectionHandlerType Create(
|
|
Autodesk.Revit.DB.Document pADoc,
|
|
System.String name,
|
|
System.Guid guid,
|
|
System.String familyName,
|
|
Autodesk.Revit.DB.ElementId categoryId,
|
|
System.Collections.Generic.IList<Autodesk.Revit.DB.Structure.ConnectionInputPointInfo> inputPointsInfo
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public static Autodesk.Revit.DB.Structure.StructuralConnectionHandlerType Create(
|
|
Autodesk.Revit.DB.Document pADoc,
|
|
System.String name,
|
|
System.Guid guid,
|
|
System.String familyName,
|
|
Autodesk.Revit.DB.ElementId categoryId
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public static Autodesk.Revit.DB.Structure.StructuralConnectionHandlerType Create(
|
|
Autodesk.Revit.DB.Document pADoc,
|
|
System.String name,
|
|
System.Guid guid,
|
|
System.String familyName
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public static void AddElementsToCustomConnection(
|
|
Autodesk.Revit.DB.Structure.StructuralConnectionHandler structuralConnectionHandler,
|
|
System.Collections.Generic.IList<Autodesk.Revit.DB.Reference> references
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public static void RemoveMainSubelementsFromCustomConnection(
|
|
Autodesk.Revit.DB.Structure.StructuralConnectionHandler structuralConnectionHandler,
|
|
System.Collections.Generic.IList<Autodesk.Revit.DB.Subelement> subelements
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public static System.Boolean IsTypeNameValidForCustomConnection(
|
|
Autodesk.Revit.DB.Document document,
|
|
System.String typeName
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public static Autodesk.Revit.DB.ElementId FindGenericConnectionType(Autodesk.Revit.DB.Document doc) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual System.Guid ConnectionGuid
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|