Increase indentation level of selected lines.

Namespace: Sgry.Azuki
Assembly: Azuki (in Azuki.dll) Version: 1.7.13.40248

Syntax

C#
public static void BlockIndent(
	IUserInterface ui
)
Visual Basic
Public Shared Sub BlockIndent ( 
	ui As IUserInterface
)

Parameters

ui
Type: Sgry.Azuki..::..IUserInterface

Remarks

This action indents all selected lines at once. The character(s) to be used for indentation will be a tab (U+0009) if IUserInterface.UsesTabForIndent property is true, otherwise a sequence of space characters (U+0020). The number of space characters which will be used for indentation is determined by IUserInterface.TabWidth property value.

See Also