AGI STK Objects 11 Send comments on this topic.
IAgVeVODropLinePathItem Interface





Description

Interface for drop lines at intervals along the vehicle's path.

Public Properties

Public Property Color The color of the drop lines (if the 2D graphics color is not used).
Public Property Interval The time interval between drop lines. Uses Time Dimension.
Public Property IsVisible Opt whether to display the drop lines.
Public Property LineStyle The line style of the drop line.
Public Property LineWidth The width of the drop line from orbit
Public Property Type Get the option for where to end the drop lines.
Public Property Use2DColor Opt whether to use the color in the vehicle's 2D attributes for the drop lines.

Example

Configure 3D dropline graphics
[C#] Copy Code
dropLine.IsVisible = true
dropLine.Use2DColor = false
dropLine.Color = Color.Red; 
dropLine.LineStyle =  <a href="STKUtil.chm::/STKUtil~Enumerations~AgELineStyle_EN.html">AgELineStyle</a>.eDashed; 
dropLine.LineWidth = AgELineWidth.e4; 
dropLine.Interval = 100.000// in sec 
 

Configure 3D dropline graphics
[Visual Basic .NET] Copy Code
dropLine.IsVisible = True
dropLine.Use2DColor = False
dropLine.Color = Color.Red
dropLine.LineStyle = AgELineStyle.eDashed
dropLine.LineWidth = AgELineWidth.e4
dropLine.Interval = 100
' in sec

© 2016 Analytical Graphics, Inc. All Rights Reserved.

STK Programming Interface 11.0.1