DefaultProfileBehavior Enumeration | 
 
            An enumeration indicating which type of connection to use for a given 
RoutePropagator.
            Options include the ability to follow the terrain at a constant height offset, fly above the terrain
            at a minimum height, or ignore terrain and simply connect the heights between 
            
RouteProcedures
            with either a flat or inclined line segment.
            
 
    Namespace: 
   AGI.Foundation.RouteDesign
    Assembly:
   AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic enum DefaultProfileBehavior
Public Enumeration DefaultProfileBehavior
public enum class DefaultProfileBehavior
type DefaultProfileBehavior
Members| 
									 
								 | Member name | Description | 
|---|
 | FollowTerrain | 
            Indicates the connection has a constant height above the terrain.
            This requires the user to specify a TerrainProvider
            and is useful when modeling ground vehicles or other objects moving along the ground.
             | 
 | AvoidTerrain | 
            Indicates the connection will attempt to avoid terrain by a specified minimum height.
            This requires the user to specify a TerrainProvider
            and is useful for modeling aircraft that are operating over mountainous terrain.
             | 
 | StandardConnection | 
            Indicates the connection will ignore any terrain definition and instead connect the heights
            between RouteProcedures 
            by either a flat or an inclined segment.
             | 
See Also