EditingCommands.DecreaseIndentation Property

Definition

Represents the DecreaseIndentation command, which requests that indentation for the current paragraph be decreased by one tab stop.

C#
public static System.Windows.Input.RoutedUICommand DecreaseIndentation { get; }

Property Value

The requested command. The default key gesture for this command is Ctrl+Shift+T.

Examples

The following example demonstrates how to invoke an editing command on an object that supports the command.

For this example, a RichTextBox serves as the command target. Note that RichTextBox implements the IInputElement interface (inherited from FrameworkElement), and that it includes native support for many editing commands.

The first argument for the Execute method is a command parameter. Most editing commands ignore the command parameter; in general, this parameter should be null for editing commands.

The second argument specifies the object to which the command will be routed. This object must implement the IInputElement interface, and should include a handler for the specified command. Generally, a command is ignored when invoked on an object that does not handle the command.

C#
RichTextBox rTB = new RichTextBox();

EditingCommands.ToggleInsert.Execute(null, rTB);

Remarks

There is not necessarily an actual implementation that responds to this command on any given object; in many cases the implementation that responds to a command is the responsibility of the application writer.

This command is natively supported by RichTextBox.

Importante

This command has no effect on a text element unless the AcceptsTab property of the text element is set to true.

XAML Attribute Usage

<object property="DecreaseIndentation"/>  

Applies to

Prodotto Versioni
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also