RebarShapeDefinitionBySegments
Definition of a shape in terms of one or more straight segments of rebar, with arc bends between the segments.
The segments are represented by RebarShapeEdge objects. The segments are numbered starting with 0, and they have a direction; so the beginning of the shape is end 0 of segment 0, and the end of the shape is end 1 of segment (NumberOfSegments-1).
The ends and junctions are represented by RebarShapeVertex objects. The number of vertices is always one greater than the number of segments. The first vertex represents the start of the shape; the last vertex represents the end of the shape; and the intermediate vertices represent the bends between segments.
System.Object
Autodesk.Revit.DB.Structure.RebarShapeDefinition
Autodesk.Revit.DB.Structure.RebarShapeDefinitionBySegments
public class RebarShapeDefinitionBySegments : RebarShapeDefinition
| Name | Return Type | Description | Inherited From |
|---|---|---|---|
| RebarShapeDefinitionBySegments(Document, Int32) | None | Create a rebar shape definition with a given number of segments. |
| Name | Return Type | Description | Inherited From |
|---|---|---|---|
| AddBendDefaultRadius(Int32, RebarShapeVertexTurn, RebarShapeBendAngle) | None | Specify a default-radius bend. | |
| AddBendVariableRadius(Int32, RebarShapeVertexTurn, RebarShapeBendAngle, ElementId, Boolean) | None | Specify a variable-radius bend. | |
| AddConstraintParallelToSegment(Int32, ElementId, Boolean, Boolean) | None | Constrain the length of a segment by parameterizing its length. | |
| AddConstraintToSegment(Int32, ElementId, Double, Double, Int32, Boolean, Boolean) | None | Add a constraint that helps determine the length of a segment. | |
| AddListeningDimensionBendToBend(ElementId, Double, Double, Int32, Int32, Int32, Int32) | None | Specify a dimension between two bends, measured by a read-only parameter. | |
| AddListeningDimensionSegmentToBend(ElementId, Double, Double, Int32, Int32, Int32) | None | Specify a dimension perpendicular to one fixed-direction segment, referring to that segment and some other bend in the shape, measured by a read-only parameter. | |
| AddListeningDimensionSegmentToSegment(ElementId, Double, Double, Int32, Int32) | None | Specify a dimension perpendicular to two fixed-direction segments, measured by a read-only parameter. | |
| GetSegment(Int32) | The requested segment. | Return a reference to one of the segments in the definition. | |
| GetVertex(Int32) | The requested vertex. | Return a reference to one of the vertices in the definition. | |
| RemoveParameterFromSegment(Int32, ElementId) | None | Remove constraints from a segment. | |
| SetSegmentAs180DegreeBend(Int32) | None | Indicates that a segment is a "virtual" segment introduced to describe a 180-degree bend. The radius of the bend will be taken from the Bar Type. | |
| SetSegmentAs180DegreeBend(Int32, ElementId, Boolean) | None | Indicate that a segment is a "virtual" segment introduced to describe a 180-degree bend. The radius of the bend will be driven by radiusParam. | |
| SetSegmentFixedDirection(Int32, Double, Double) | None | Fix the direction of a segment. | |
| SetSegmentVariableDirection(Int32) | None | Remove the fixed direction from a segment. | |
| AddFormulaParameter(ElementId, String) | None | Add a formula-driven parameter to the shape definition. | RebarShapeDefinition |
| AddParameter(ElementId, Double) | None | Add a parameter to the shape definition. | RebarShapeDefinition |
| CheckDefaultParameterValues(Double, Double) | bool | Check that the shape can be solved with the default parameter values. | RebarShapeDefinition |
| Dispose() | None | Releases all resources used by the | RebarShapeDefinition |
| GetParameterDefaultValue(ElementId) | The parameter value. | Return the parameter's default value as stored in the definition. | RebarShapeDefinition |
| GetParameterFormula(ElementId) | string | Return the parameter's formula, if one is associated with it. | RebarShapeDefinition |
| GetParameters() | IList<ElementId> | Return the Ids of the shared parameters in the Definition. | RebarShapeDefinition |
| HasParameter(ElementId) | bool | Whether the definition stores the parameter. | RebarShapeDefinition |
| RemoveParameter(ElementId) | None | Remove the parameter from the definition. | RebarShapeDefinition |
| SetParameterDefaultValue(ElementId, Double) | None | Change the parameter's value as stored in the definition. | RebarShapeDefinition |
| SetParameterFormula(ElementId, String) | None | Associate a formula with the parameter. | RebarShapeDefinition |
| Name | Return Type | Description | Inherited From |
|---|---|---|---|
| MajorSegmentIndex | int | Index of a segment that can be considered the most important. Revit attempts to preserve the orientation of this segment when a Rebar instance changes its RebarShape to one with a different number of segments. | |
| NumberOfSegments | int | The number of straight segments in this shape. | |
| NumberOfVertices | int | The number of vertices in this shape, always equal to NumberOfSegments + 1. | |
| Complete | bool | Report whether the shape definition is fully constrained. | RebarShapeDefinition |
| IsPlanar | bool | Reports whether the shape definition lies within a plane: false if a spiral, true in all other cases. | RebarShapeDefinition |
| IsValidObject | bool | Specifies whether the .NET object represents a valid Revit entity. | RebarShapeDefinition |