Files
speckle-sharp-host-apis/Speckle.Revit2023.Fakes/generated/Autodesk.Revit.DB.Structure.StructuralConnectionType.s.cs
Adam Hathcock 242cf50726 Rhino fakes (#28)
* first pass of making Rhino work: more structs, nested types and some generic work

* ignoring more types to compile

* initial rhino check in.  tabs on revit

* more fixes?

* rerun rhino

* more generic fixes

* more rhino fixes

* add interfaces to structs and explicit interfaces

* fix indexers and add exceptions

* Compiles!

* add more collections and better interface implementations

* add static properties on structs

* add static methods to structs

* Deal with out values and System.Drawing

* fmt

* fix up Revit to have old properties/methods

* rerun revit to be updated
2024-07-02 16:24:56 +01:00

35 lines
1.3 KiB
C#

namespace Autodesk.Revit.DB.Structure;
public partial class StructuralConnectionType : Autodesk.Revit.DB.ElementType
{
public StructuralConnectionType() { }
public static Autodesk.Revit.DB.Structure.StructuralConnectionType Create(
Autodesk.Revit.DB.Document doc,
Autodesk.Revit.DB.Structure.StructuralConnectionApplyTo applyTo,
System.String name,
Autodesk.Revit.DB.ElementId familySymbolId
) => throw new System.NotImplementedException();
public static void GetAllStructuralConnectionTypeIds(
Autodesk.Revit.DB.Document cda,
out System.Collections.Generic.ICollection<Autodesk.Revit.DB.ElementId> ids
) => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.ElementId GetFamilySymbolId() => throw new System.NotImplementedException();
public virtual void SetFamilySymbolId(Autodesk.Revit.DB.ElementId familySymbolId) =>
throw new System.NotImplementedException();
public static System.Boolean ValidFamilySymbolId(
Autodesk.Revit.DB.Document doc,
Autodesk.Revit.DB.Structure.StructuralConnectionApplyTo applyTo,
Autodesk.Revit.DB.ElementId familySymbolId
) => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.Structure.StructuralConnectionApplyTo ApplyTo
{
get => throw new System.NotImplementedException();
}
}