Description
Returns an IAgStkAccess object. If the access from B to A already exists when requesting A to B, B to A will be returned unless it is already computed and the light time delay is > 1.0 sec.
Syntax
Parameters
See Also
Example
Compute an access between two STK Objects (using IAgStkObject interface)
[C#] |
---|
// Get access by STK Object
IAgStkAccess access = stkObject1.GetAccessToObject(stkObject2);
// Compute access
access.ComputeAccess();
|
|
Compute an access between two STK Objects (using IAgStkObject interface)
[Visual Basic .NET] |
---|
' Get access by STK Object
Dim access As IAgStkAccess = stkObject1.GetAccessToObject(stkObject2)
' Compute access
access.ComputeAccess()
|
|