Gets or sets characters which will be 'hanged' on a screen line.
Namespace: Sgry.AzukiAssembly: Azuki (in Azuki.dll) Version: 1.7.5.21597
Syntax
C# |
---|
public virtual char[] CharsToBeHanged { get; set; } |
Visual Basic |
---|
Public Overridable Property CharsToBeHanged As Char() Get Set |
Implements
IWordProc..::..CharsToBeHanged
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.
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | Null was specified. |
System..::..ArgumentException | Specified value contains one or more EOL characters. |