Activates the Camera's mount control system to instruct the mount to move in a particular direction for a given period of time
            
 
    Namespace: 
   ASCOM.DriverAccess
    Assembly:
   ASCOM.DriverAccess (in ASCOM.DriverAccess.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
 Syntax
Syntaxpublic void PulseGuide(
	GuideDirections Direction,
	int Duration
)
Public Sub PulseGuide ( 
	Direction As GuideDirections,
	Duration As Integer
)
public:
virtual void PulseGuide(
	GuideDirections Direction, 
	int Duration
) sealed
Parameters
- Direction
- Type: ASCOM.DeviceInterfaceGuideDirections
 The direction of movement.
- Duration
- Type: SystemInt32
 The duration of movement in milli-seconds.
Implements
ICameraV3PulseGuide(GuideDirections, Int32) Exceptions
Exceptions Remarks
Remarks
            This method returns only after the move has completed.
            
            The (symbolic) values for GuideDirections are:
            
- guideNorth = 0 : North (+ declination/elevation)
- guideSouth = 1 : South (- declination/elevation)
- guideEast  = 2 : East (+ right ascension/azimuth)
- guideWest  = 3 : West (+ right ascension/azimuth)
Note: directions are nominal and may depend on exact mount wiring.  
            guideNorth must be opposite guideSouth, and 
            guideEast must be opposite guideWest.
 See Also
See Also