ConfigurableSurfaceProcedureConfigureExit Method |
Given the list of connections, configure the next connection as it leaves this procedure.
Ensure that the connection is continuous in both position and heading. Note that the outgoing
heading may have changed in between evaluations if other procedures are configuring the same
connection. The procedure is responsible for providing an exit arc which accounts for this change.
Namespace:
AGI.Foundation.RouteDesign.Advanced
Assembly:
AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public abstract SurfaceConfigurationResult ConfigureExit(
IList<ConfigurableConnection> connections,
int nextIndex
)
Public MustOverride Function ConfigureExit (
connections As IList(Of ConfigurableConnection),
nextIndex As Integer
) As SurfaceConfigurationResult
public:
virtual SurfaceConfigurationResult^ ConfigureExit(
IList<ConfigurableConnection^>^ connections,
int nextIndex
) abstract
abstract ConfigureExit :
connections : IList<ConfigurableConnection> *
nextIndex : int -> SurfaceConfigurationResult
Parameters
- connections
- Type: System.Collections.GenericIListConfigurableConnection
The list of connections in the route. - nextIndex
- Type: SystemInt32
The index of the connection which comes after this procedure.
Return Value
Type:
SurfaceConfigurationResultReturns a result indicating whether the configuration was successful or whether there was
an error which either prevents configuration or forces a discontinuous result.
See Also