StkEphemerisFileEphemerisLLRTimePosInterpolator Property  | 
 
            Gets or sets the interpolator to use to interpolate this ephemeris data.  This
            property may be null if no interpolator was specified or if the "InterpolationMethod"
            in the file was not available.
            
 
    Namespace: 
   AGI.Foundation.Stk
    Assembly:
   AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic override TranslationalMotionInterpolator Interpolator { get; set; }Public Overrides Property Interpolator As TranslationalMotionInterpolator
	Get
	Set
public:
virtual property TranslationalMotionInterpolator^ Interpolator {
	TranslationalMotionInterpolator^ get () override;
	void set (TranslationalMotionInterpolator^ value) override;
}abstract Interpolator : TranslationalMotionInterpolator with get, set
override Interpolator : TranslationalMotionInterpolator with get, set
Property Value
Type: 
TranslationalMotionInterpolator
Remarks
            When reading an ephemeris file, this property may be null if the "InterpolationMethod"
            property did not exist in the file or if it could not be automatically mapped to a
            TranslationalMotionInterpolator instance.
            In the latter case, the original string representation of the name of the interpolation method
            can be found in the Properties collection.
            
            When writing an ephemeris file, and this property is non-null, it overrides "InterpolationMethod"
            in Properties.  However, if this property is null, the value in
            Properties is used.
            
See Also