Files
speckle-sharp-host-apis/Speckle.Revit2023.Fakes/generated/Autodesk.Revit.DB.Structure.RebarInSystem.s.cs
T
Adam Hathcock d482bf1087 Generate fakes (#24)
* 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
2024-07-01 13:55:55 +01:00

145 lines
5.6 KiB
C#

namespace Autodesk.Revit.DB.Structure;
public partial class RebarInSystem : Autodesk.Revit.DB.Element
{
public virtual System.Collections.Generic.IList<Autodesk.Revit.DB.Curve> GetCenterlineCurves(
System.Boolean adjustForSelfIntersection,
System.Boolean suppressHooks,
System.Boolean suppressBendRadius
) => throw new System.NotImplementedException();
public virtual System.Collections.Generic.IList<Autodesk.Revit.DB.Curve> GetTransformedCenterlineCurves(
System.Boolean adjustForSelfIntersection,
System.Boolean suppressHooks,
System.Boolean suppressBendRadius,
System.Int32 barPositionIndex
) => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.Line GetDistributionPath() => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.Transform GetBarPositionTransform(System.Int32 barPositionIndex) =>
throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.Structure.RebarRoundingManager GetReinforcementRoundingManager() =>
throw new System.NotImplementedException();
public virtual void SetBarHiddenStatus(Autodesk.Revit.DB.View view, System.Int32 barIndex, System.Boolean hide) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsBarHidden(Autodesk.Revit.DB.View view, System.Int32 barIndex) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsRebarInSection(Autodesk.Revit.DB.View dBView) =>
throw new System.NotImplementedException();
public virtual System.Boolean HasPresentationOverrides(Autodesk.Revit.DB.View dBView) =>
throw new System.NotImplementedException();
public virtual void SetPresentationMode(
Autodesk.Revit.DB.View dBView,
Autodesk.Revit.DB.Structure.RebarPresentationMode presentationMode
) => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.Structure.RebarPresentationMode GetPresentationMode(Autodesk.Revit.DB.View dBView) =>
throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.Structure.RebarPresentationMode FindMatchingPredefinedPresentationMode(
Autodesk.Revit.DB.View dBView
) => throw new System.NotImplementedException();
public virtual void ClearPresentationMode(Autodesk.Revit.DB.View dBView) =>
throw new System.NotImplementedException();
public virtual System.Boolean CanApplyPresentationMode(Autodesk.Revit.DB.View dBView) =>
throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.ElementId GetHostId() => throw new System.NotImplementedException();
public virtual System.Boolean IsUnobscuredInView(Autodesk.Revit.DB.View view) =>
throw new System.NotImplementedException();
public virtual void SetUnobscuredInView(Autodesk.Revit.DB.View view, System.Boolean unobscured) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsSolidInView(Autodesk.Revit.DB.View3D view) =>
throw new System.NotImplementedException();
public virtual void SetSolidInView(Autodesk.Revit.DB.View3D view, System.Boolean solid) =>
throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.Structure.RebarBendData GetBendData() => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.ElementId GetHookTypeId(System.Int32 end) =>
throw new System.NotImplementedException();
public virtual void SetBarIncluded(System.Boolean include, System.Int32 barPositionIndex) =>
throw new System.NotImplementedException();
public virtual System.Boolean DoesBarExistAtPosition(System.Int32 barPosition) =>
throw new System.NotImplementedException();
public virtual void MoveBarInSet(System.Int32 barPositionIndex, Autodesk.Revit.DB.Transform moveTransform) =>
throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.Transform GetMovedBarTransform(System.Int32 barPositionIndex) =>
throw new System.NotImplementedException();
public virtual void ResetMovedBarTransform(System.Int32 barPositionIndex) =>
throw new System.NotImplementedException();
public virtual System.Int32 GetBarIndexFromReference(Autodesk.Revit.DB.Reference barReference) =>
throw new System.NotImplementedException();
public virtual System.Boolean CanEditIndividualBars() => throw new System.NotImplementedException();
public virtual System.Int32 NumberOfBarPositions
{
get => throw new System.NotImplementedException();
}
public virtual Autodesk.Revit.DB.ElementId RebarShapeId
{
get => throw new System.NotImplementedException();
}
public virtual System.Double Volume
{
get => throw new System.NotImplementedException();
}
public virtual System.Double TotalLength
{
get => throw new System.NotImplementedException();
}
public virtual Autodesk.Revit.DB.Structure.RebarLayoutRule LayoutRule
{
get => throw new System.NotImplementedException();
}
public virtual System.Double MaxSpacing
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 Quantity
{
get => throw new System.NotImplementedException();
}
public virtual System.Double ArrayLength
{
get => throw new System.NotImplementedException();
}
public virtual System.Boolean BarsOnNormalSide
{
get => throw new System.NotImplementedException();
}
public virtual Autodesk.Revit.DB.XYZ Normal
{
get => throw new System.NotImplementedException();
}
public virtual System.String ScheduleMark
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.ElementId SystemId
{
get => throw new System.NotImplementedException();
}
}