Class PanCommand
Represents the PanCommand class in the SfMap. It is inherited from MapLayerCommandBase.
Implements
System.Windows.Input.ICommand
Namespace: Syncfusion.UI.Xaml.Maps
Assembly: Syncfusion.SfMaps.WPF.dll
Syntax
public class PanCommand : MapLayerCommandBase, ICommand
Remarks
This class represents the PanCommand in the map. Also it is inherited from MapLayerCommandBase.
Constructors
PanCommand(SfMap)
Initializes a new instance of the PanCommand class.
Declaration
public PanCommand(SfMap mapControl)
Parameters
Type | Name | Description |
---|---|---|
SfMap | mapControl | SfMap which is having PanCommand and its implementations. |
Remarks
Initialize the MapControl property of the PanCommand.
Methods
CanExecute(Object)
Determines whether PanCommand can execute in its current state.
Declaration
public override bool CanExecute(object parameter)
Parameters
Type | Name | Description |
---|---|---|
System.Object | parameter | Type :System.Object object to determine can execute. |
Returns
Type | Description |
---|---|
System.Boolean | Type :System.Boolean true if the command can execute on the PanCommand target; otherwise, false. |
Overrides
Execute(Object)
Executes the ZoomOutCommand on the target.
Declaration
public override void Execute(object parameter)
Parameters
Type | Name | Description |
---|---|---|
System.Object | parameter | Type :System.Object Parameter to be passed to the ZoomOutCommand handler.It will reoresent the direction to be panned. |
Overrides
Implements
System.Windows.Input.ICommand