RouteConnectionCreateConnection Method |
Namespace:
AGI.Foundation.RouteDesign
Assembly:
AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public abstract ConfigurableConnection CreateConnection(
ConfigurableSurfaceProcedure previousPath,
ConfigurableSurfaceProcedure nextPath,
RouteProcedure previousProcedure,
RouteProcedure nextProcedure
)
Public MustOverride Function CreateConnection (
previousPath As ConfigurableSurfaceProcedure,
nextPath As ConfigurableSurfaceProcedure,
previousProcedure As RouteProcedure,
nextProcedure As RouteProcedure
) As ConfigurableConnection
public:
virtual ConfigurableConnection^ CreateConnection(
ConfigurableSurfaceProcedure^ previousPath,
ConfigurableSurfaceProcedure^ nextPath,
RouteProcedure^ previousProcedure,
RouteProcedure^ nextProcedure
) abstract
abstract CreateConnection :
previousPath : ConfigurableSurfaceProcedure *
nextPath : ConfigurableSurfaceProcedure *
previousProcedure : RouteProcedure *
nextProcedure : RouteProcedure -> ConfigurableConnection
Parameters
- previousPath
- Type: AGI.Foundation.RouteDesign.AdvancedConfigurableSurfaceProcedure
The previous procedure's configurable path. - nextPath
- Type: AGI.Foundation.RouteDesign.AdvancedConfigurableSurfaceProcedure
The next procedure's configurable path. - previousProcedure
- Type: AGI.Foundation.RouteDesignRouteProcedure
The previous procedure. - nextProcedure
- Type: AGI.Foundation.RouteDesignRouteProcedure
The next procedure.
Return Value
Type:
ConfigurableConnectionThe connection between the previous and next procedures.
See Also