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

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

Syntax

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

Property Value

Type: 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