[]
Gets a value that indicates whether the application wraps the text of the associated range as displayed in the current user interface.
This property reflects the displayed format of the associated range, which can differ from the underlying IRange settings.
bool WrapText { get; }
ReadOnly Property WrapText As Boolean
IRange range = worksheet.Range["A1"];
range.Value = "Test";
range.WrapText = true;
bool wrapText = range.DisplayFormat.WrapText;