Class CopyHyperlinkCommand
Implements a command to copy a hyperlink.
Implements
System.Windows.Input.ICommand
Inherited Members
Namespace: Syncfusion.UI.Xaml.RichTextBoxAdv
Assembly: Syncfusion.SfRichTextBoxAdv.UWP.dll
Syntax
public class CopyHyperlinkCommand : CommandBase, ICommand
Constructors
CopyHyperlinkCommand(SfRichTextBoxAdv)
Initializes a new instance of the CopyHyperlinkCommand class for the specified SfRichTextBoxAdv.
Declaration
public CopyHyperlinkCommand(SfRichTextBoxAdv richTextBoxAdv)
Parameters
| Type | Name | Description |
|---|---|---|
| SfRichTextBoxAdv | richTextBoxAdv | The SfRichTextBoxAdv instance to which the CopyHyperlinkCommand is associated. |
Methods
CanExecuteCommand(Object)
Defines the method to be called when the command is invoked.
Declaration
public override bool CanExecuteCommand(object parameter)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | parameter | Data used by the command. If the command does not require data to be passed, this object can be set to null. |
Returns
| Type |
|---|
| System.Boolean |
Overrides
ExecuteCommand(Object)
Called when copy hyperlink command executed.
Declaration
protected override void ExecuteCommand(object parameter)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | parameter | Data used by the copy hyperlink command. If the command does not require data to be passed, this object can be set to null. |
Overrides
Implements
System.Windows.Input.ICommand