[]
Gets or sets a value indicating whether to delay full text alignment till when any of the Split* methods is called.
Do not use this property unless you are calling any of the Split* methods to render the text.
[Obsolete("This property is not used anymore. It is always equal to true.")]
public bool AlignmentDelayToSplit { get; set; }
<Obsolete("This property is not used anymore. It is always equal to true.")>
Public Property AlignmentDelayToSplit As Boolean
By default this property is false, and the text is completely aligned by the PerformLayout(bool) method. Setting this property to true delays complete alignment (e.g. justification) till one of the Split* methods is called. This improves performance when dealing with large amounts of text that is split between pages or columns, as it avoids aligning portions of text that will need to be re-aligned later anyway.