Gets or sets hook delegate to execute auto-indentation. If null, auto-indentation will not be performed.

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

Syntax

C#
public AutoIndentHook AutoIndentHook { get; set; }
Visual Basic
Public Property AutoIndentHook As AutoIndentHook
	Get
	Set

Property Value

Type: AutoIndentHook

Implements

IUserInterface..::..AutoIndentHook

Remarks

This property gets or sets a delegate object to execute auto-indentation. If this property was null, no auto-indentation will be executed.

There are some built-in auto-indentation hook delegates declared as members of AutoIndentHooks class. You can use one of them, or create your own logic. For detail of the hook mechanism, see the document of AutoIndentHook.

See Also