STK ObjectsSend comments on this topic.
ComputedAccessIntervalTimes Property (IAgStkAccess)
See Also
Windows





Windows & Linux

Description

Returns a list of the computed access interval times.

Property type

Read-only property

Syntax

[Visual Basic .NET]
Public Property ComputedAccessIntervalTimes() As IAgIntervalCollection
[C#]
public IAgIntervalCollection ComputedAccessIntervalTimes {get;}
[Managed C++]
public: __property IAgIntervalCollection ^ get_ComputedAccessIntervalTimes();
[Unmanaged C++]
public: HRESULT get_ComputedAccessIntervalTimes(
    IAgIntervalCollection ** ppRetVal
);
[Java]
public IAgIntervalCollection getComputedAccessIntervalTimes();
[Python - STK API ]
@property
def ComputedAccessIntervalTimes(self) -> "IAgIntervalCollection":

See Also

Example

Compute and extract access interval times
[C#]
// Get and display the Computed Access Intervals
IAgIntervalCollection intervalCollection = access.ComputedAccessIntervalTimes;

// Set the intervals to use to the Computed Access Intervals
Array computedIntervals = intervalCollection.ToArray(0, -1);
access.SpecifyAccessIntervals(ref computedIntervals);
Compute and extract access interval times
[Visual Basic .NET]
' Get and display the Computed Access Intervals
Dim intervalCollection As IAgIntervalCollection = access.ComputedAccessIntervalTimes

' Set the intervals to use to the Computed Access Intervals
Dim computedIntervals As Array = intervalCollection.ToArray(0, -1)
access.SpecifyAccessIntervals(computedIntervals)
© 2024 Analytical Graphics, Inc. All Rights Reserved.