[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDisplayFormat.WrapText

WrapText Property

WrapText

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.

Declaration
bool WrapText { get; }
ReadOnly Property WrapText As Boolean
Examples
IRange range = worksheet.Range["A1"];
range.Value = "Test";
range.WrapText = true;
bool wrapText = range.DisplayFormat.WrapText;