テキストが折り返される場合は True。読み取り/書き込み Boolean
構文
property WrapText: OleVariant;
備考
テキストを収めるために必要な場合、Microsoft Excel は範囲の行の高さを変更します
使用例
この使用例は、シート 1 のセル B2 をテキストが折り返されるように書式設定します
With Workbook.Sheets[1].Range['B2', 'B2'] do begin
Value := 'This text should wrap in a cell';
WrapText := true;
end;