The TIWMemo is the IntraWeb equivalent of the TMemo from VCL. 
TIWMemo = class(TIWCustomControl) 
Properties
property BGColor: TIWColor
Use this property to set the background color of the control. 
property Editable: Boolean;
Use this property to indicate if the control will be Editable or read-only. 
property HorizScrollBar: Boolean;
Use this property to indicate if the control's horizontal bar will be visible. 
property InvisibleBorder: Boolean;
Use this property to indicate if the control's border will be visible. 
property Lines: TStrings;
Use this property to read/write to the control's text. 
property ResizeDirection: TMemoResizeDirection 
Use this property to specify whether or not an element is resizable by the user.  
   TMemoResizeDirection 
  
    - rdNone:   The user cannot resize the element  
 
    - rdBoth:   The user can adjust both the height and the width of the element  
 
    - rdVertical:   The user can adjust the width of the element  
 
    - rdHorizontal:   The user can adjust the height of the element  
 
   
 
 property VertScrollBar: Boolean;
Use this property to indicate if the control's vertical bar will be visible. 
  
 Events
 property OnClick;
This event is triggered when the user click on the control. This event forces the full page to be rendered, ie, it is a full submit event. 
 |