Class SlideViewCommandService
Inherited Members
Namespace: Telerik.XamarinForms.Primitives.SlideView.Commands
Assembly: Telerik.XamarinForms.Primitives.dll
Syntax
public class SlideViewCommandService : CommandServiceBase<RadSlideViewPresenter>
Methods
CanExecuteCommand(SlideViewCommandId, Object)
Determines whether the command, associated with the specified Id can be executed given the parameter provided.
Declaration
public bool CanExecuteCommand(SlideViewCommandId id, object parameter)
Parameters
SlideViewCommandId
id
The |
System.Object
parameter
The parameter that is passed to the CanExecute and Execute methods of the command. |
Returns
System.Boolean
True if the command can be executed, false otherwise. |
ExecuteCommand(SlideViewCommandId, Object)
Attempts to find the command, associated with the specified Id and to perform its Execute routine, using the provided parameter.
Declaration
public bool ExecuteCommand(SlideViewCommandId id, object parameter)
Parameters
SlideViewCommandId
id
The |
System.Object
parameter
The parameter that is passed to the CanExecute and Execute methods of the command. |
Returns
System.Boolean
True if the command is successfully executed, false otherwise. |