InkCanvas.CutSelection Method

Definition

Deletes the selected strokes and elements, and copies them to the Clipboard.

public:
 void CutSelection();
public void CutSelection ();
member this.CutSelection : unit -> unit
Public Sub CutSelection ()

Examples

The following example selects and cuts two elements on an InkCanvas. This example assumes that there is a TextBox called textbox1 and a Button called button1 - and that both controls are child elements of the InkCanvas.

inkCanvas1.Select(new UIElement[] { textbox1, button1 });
inkCanvas1.CutSelection();
inkCanvas1.Select(New UIElement() {textbox1, button1})
inkCanvas1.CutSelection()

Remarks

The InkCanvas can support Clipboard data in Extensible Application Markup Language (XAML) format, Ink Serialized Format (ISF), and text format. Strokes to the Clipboard are both Extensible Application Markup Language (XAML) format, Ink Serialized Format (ISF).

Applies to