AGI STK Objects 11 Send comments on this topic.
IAgLineTarget Interface
Windows






Windows & Linux

Description

Line Target Path properties.

Object Model





Public Properties

Public Property AccessConstraintsReturns the constraints for the line target.
Public Property AllowObjectAccessOpt to have access to the object constrained to when it applies to the entire object,rather than any part of it.
Public Property GraphicsReturns the 2D graphics properties of the line target.
Public Property PointsGet the points table, which displays a summary of the latitude and longitude values for each point, and indicates which point is currently defined as the anchor point.
Public Property VOReturns the 3D graphics properties of the line target.

Example

Create a New LineTarget (on the current scenario central body)
[MATLAB]Copy Code
% IAgScenario scenario: Scenario object 
lineTarget = scenario.Children.New('eLineTarget','MyLineTarget'); 
point1 = lineTarget.Points.Add(34.72, -118.34); 
point2 = lineTarget.Points.Add(30.83, -82.67); 
 
 
Create a New LineTarget (on the current scenario central body)
[Python]Copy Code
#IAgScenario scenario: Scenario object 
lineTarget = scenario.Children.New(11,'MyLineTarget') # eLineTarget 
point1 = lineTarget.Points.Add(34.72, -118.34) 
point2 = lineTarget.Points.Add(30.83, -82.67) 
 
 

CoClasses that Implement IAgLineTarget

© 2018 Analytical Graphics, Inc. All Rights Reserved.