Gets or sets characters which will be 'hanged' on a screen line.

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

Syntax

C#
char[] CharsToBeHanged { get; set; }
Visual Basic
Property CharsToBeHanged As Char()
	Get
	Set

Property Value

Type: array<Char>[]()[][]

Remarks

This property is a set of characters. All characters included in the value will be avoided to be placed at start of a screen line, and will be 'hanged.' The term 'hang' here means placing a character beyond the end of screen line. Hanged character will be drawn out of text area and will not be the starting character of the next screen line.

Note that CR (U+000d) and LF (U+000a) must not be included in the value of this property. To hang graphics of CR, LF, or CR+LF, use EnableEolHanging.

See Also