This property returns and sets a value that indicates whether a Label control with its AutoSize property set to True expands vertically or horizontally to fit the text specified in its Caption property.
object.WordWrap [= Boolean]
Use this property to determine how a Label control displays its contents. For example, a graph that changes dynamically might have a Label containing text that also changes. To maintain a constant horizontal size for the Label and to enable increasing or decreasing text, set the WordWrap and AutoSize properties to True.
If you want a Label control to expand horizontally only, set WordWrap to False. If you do not want the Label to change size, set AutoSize to False.
If AutoSize is set to False, the text always wraps, regardless of the size of the Label control or the setting of the WordWrap property. This may obscure some text because the Label does not expand in any direction.