Description
IAgSnPtExternal Interface for antennas oriented with a custom pointing file.
Public Properties
Filename | Path and file name of the sensor pointing (.sp) file. |
Interfaces
CoClasses that Implement IAgSnPtExternal
Example
Define external sensor pointing
[C#] |
---|
// Sensor pointing data files traditionally have .sp extensions
sensor.SetPointingExternalFile(externalSensorPointingPath);
IAgSnPtExternal external = sensor.Pointing as IAgSnPtExternal;
|
|
Define external sensor pointing
[Visual Basic .NET] |
---|
' Sensor pointing data files traditionally have .sp extensions
sensor.SetPointingExternalFile(externalSensorPointingPath)
Dim external As IAgSnPtExternal = TryCast(sensor.Pointing, IAgSnPtExternal)
|
|