Corridor Class

Representation of a roadway. A Roadway follows a 3D path defined by a baseline, and is made up of cross sections (AppliedAssembly) and feature lines (FeatureLine) connecting common points in each cross section.
Inheritance Hierarchy
SystemObject
  SystemMarshalByRefObject
    DisposableWrapper
      RXObject
        Drawable
          DBObject
            Entity
              Curve
                Entity
                  Autodesk.Civil.DatabaseServicesEntity
                    Autodesk.Civil.DatabaseServicesCorridor

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntax
public sealed class Corridor : Entity

The Corridor type exposes the following members.

Properties
 NameDescription
Public propertyApplication Gets the Application. Not currently implemented.
(Inherited from Entity)
Public propertyCode exampleBaselines Gets the collection of baselines in the corridor.
Public propertyCodeSetStyleId Gets or sets the style of the corridor's code set by ObjectId.
Public propertyCode exampleCodeSetStyleName Gets or sets the style name of the corridor's code set.
Public propertyCode exampleCorridorSurfaces Gets the collection of corridor surfaces in the corridor.
Public propertyDescription Gets or sets the Entity object's description.
(Inherited from Entity)
Public propertyDisplayName Gets the Entity object's display name.
(Inherited from Entity)
Public propertyDocument Gets the Document. Not currently implemented.
(Inherited from Entity)
Public propertyCode exampleFeatureLineCodeInfos Gets the feature line code information collection for the corridor.
Public propertyFingerPrint Gets or sets FingerPrint of the Entity.
(Inherited from Entity)
Public propertyFolderId Gets the folder ObjectId of the Entity Returns ObjectId::Null if the Entity is located in root folder
(Inherited from Entity)
Public propertyIsCWSReferenceObject Gets whether the Entity is a Civil Worksharing reference object. A Civil Worksharing reference object is a Civil object shared to Shared Space. It is not editable. But it can be updated to the new version in the Shared Space.
(Inherited from Entity)
Public propertyIsCWSSourceObject Gets whether the Entity is a Civil Worksharing source object. A Civil Worksharing source object is a Civil object shared to Shared Space. It is editable and can be updated to Shared Space.
(Inherited from Entity)
Public propertyCode exampleIsOutOfDate Indicates whether the corridor is out-of-date. A corridor becomes out-of-date (needs to be re-built) when changes have been made to its dependent components, such as baselines, profiles, or dependent surfaces.
Public propertyIsPartialReferenceObject Gets whether the surface is partial reference surface.
(Inherited from Entity)
Public propertyIsReadOnlyReferenceObject Gets whether the Entity is a readonly reference object. A readonly reference object is either a data shortcut referece object or a Civil Worksharing reference object.
(Inherited from Entity)
Public propertyCode exampleIsReferencedSourceExisting For reference object (IsReferenceObject == true), it will try to get its source entity while opening a drawing. This indicates whether the reference object has source entity.
(Inherited from Entity)
Public propertyIsReferenceObject Gets whether the Entity is a reference object. A reference object is located in another drawing, and linked using a data shortcut or Vault. If the entity is native to the current drawing this property returns false; if it is being referenced via data shortcuts or AutoCAD Vault it returns true.
(Inherited from Entity)
Public propertyIsReferenceStale For reference objects (IsReferenceObject == true), gets whether the Entity object's reference is stale.
(Inherited from Entity)
Public propertyIsReferenceSubObject For reference objects (IsReferenceObject == true), gets whether the Entity is a reference subobject. For example, when iterating through the structure of a pipe network referenced from another drawing, this property is true for each entity.
(Inherited from Entity)
Public propertyIsReferenceValid For reference objects (IsReferenceObject == true), gets whether the Entity object's reference is valid.
(Inherited from Entity)
Public propertyIsUsed Gets whether the style is used by other objects in the current drawing.
(Inherited from Entity)
Public propertyCode exampleMaximumTriangleSideLength Gets or sets the maximum length of the corridor surface's triangle side.
Public propertyName Gets or sets the Entity object's name.
(Inherited from Entity)
Public propertyCode exampleRebuildAutomatic Gets or sets the automatic rebuild mode for the corridor.
Public propertyCode exampleRegionLockMode Gets or sets the corridor's region lock mode.
Public propertyShowToolTip Gets or sets whether to show tooltips for the Entity.
(Inherited from Entity)
Public propertyCode exampleSlopePatterns Gets the slope pattern collection for the corridor.
Public propertyStyleId Sets the Corridor's style Id.
(Overrides EntityStyleId)
Public propertyStyleName Sets the Corridor's style name.
(Overrides EntityStyleName)
Top
Methods
 NameDescription
Public methodComputeFingerPrint Compute FingerPrint of the Entity.
(Inherited from Entity)
Public methodExportFeatureLinesAsCogoPoints(String, CorridorPointCodeSelector) Exports the corridor feature lines indicated by the specified codes collection as COGO points.
Public methodExportFeatureLinesAsCogoPoints(String, CorridorPointCodeSelector, ValueType) Exports corridor feature lines as COGO points.
Public methodCode exampleExportSolids Export solids from the corridor and save to target database.
Public methodGetLinkCodes Gets all link codes of the corridor.
Public methodGetPointCodes Gets all point codes of the corridor.
Public methodCode exampleGetReferenceInfo For Data Shortcut reference entity (IsReferenceObject == true), gets the entity's reference information.
(Inherited from Entity)
Public methodGetShapeCodes Gets all shape codes of the corridor.
Public methodGetTargets Gets the targets information. The returned object can be modified and passed to SetTargets() to update a corridor's subassembly targets information.
Public methodRebuild Forces the corridor to rebuild.
Public methodCode exampleSetTargets Sets the target information. The updatedTargets parameter is a SubassemblyTargetInfoCollection object that should be obtained from the GetTargets() method.
Top
Remarks

A corridor in Civil 3D represents a path, such as a road, trail, railroad, or airport runway. The geometry of a corridor is defined by a horizontal Alignment and a Profile. Together, these form the baseline - the centerline of the 3D path of the Corridor.

Along the length of the baselines is a series of Assembly objects, which define the cross-sectional shape of the Alignment. Common points in each Assembly are connected to form feature lines ( FeatureLine objects). Together the assemblies and feature lines form the 3D shape of a corridor.

See Also