Back to API Reference
Class

NativeEditorAction

static

Supported identifiers for native editor commands and software-keyboard actions.

public static bool IsSupported(string action)

Determines whether an identifier belongs to the supported command vocabulary.

public static const string Submit

Commits the field's content (Go / Search / Send / Done).

public static const string Return

Reports the return key itself, raised when the platform defines no editor action for it. The editor resolves it through its key bindings, so a newline is one possible outcome and SubmitKeyBehavior can bind it to submission instead.

public static const string Done

Ends the editing session, releasing focus and the software keyboard with it. Unlike Cancel it commits nothing and discards nothing, and unlike Submit it raises no submission.

public static const string Cancel

Dismisses the current editing operation.

public static const string Copy

Copies the selected content through the editor clipboard pipeline.

public static const string Cut

Cuts the selected content through the editor clipboard pipeline.

public static const string Paste

Pastes rich clipboard content through the editor input pipeline.

public static const string PastePlain

Pastes plain clipboard text through the editor input pipeline.

public static const string Undo

Reverts the latest editor transaction.

public static const string Redo

Reapplies the latest reverted editor transaction.