RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
MidItems.TTextAreaWrap Enumeration

TTextAreaWrap indicates how an HTML display control should treat items that are too wide for the physical width of the control.

Pascal
TTextAreaWrap = (
  wrOff,
  wrPhysical,
  wrVirtual
);
C++
enum TTextAreaWrap {
  wrOff,
  wrPhysical,
  wrVirtual
};

TTextAreaWrap can have one of the following values.

Value 
Meaning 
wrOff  
The control does not wrap long lines. Only newline characters that are part of the text string cause the lines in the control to wrap.  
wrPhysical  
The control formats its text value by wrapping long lines so that no text is hidden. The control inserts carriage returns into the text string.  
wrVirtual  
The control formats its text value by wrapping long lines so that no text is hidden but does not change the actual value of the text string.  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!