Dart.PowerWEB.TextBox Namespace > HtmlBox Class : DownlevelTextArea Property (HtmlBox) |
Represents the textarea control rendered to the user if the HtmlBox.DownlevelMode = DownlevelMode.TextArea.
[Visual Basic]
<CategoryAttribute("Behavior")>
<NotifyParentPropertyAttribute(True)>
<DesignerSerializationVisibilityAttribute()>
<PersistenceModeAttribute()>
<DescriptionAttribute("If DownlevelMode is TextBox, this property exposes the Textbox which is rendered.")>
Public Property DownlevelTextArea As DownlevelTextArea
[C#]
[CategoryAttribute("Behavior")]
[NotifyParentPropertyAttribute(true)]
[DesignerSerializationVisibilityAttribute()]
[PersistenceModeAttribute()]
[DescriptionAttribute("If DownlevelMode is TextBox, this property exposes the Textbox which is rendered.")]
public DownlevelTextArea DownlevelTextArea {get; set;}
[C++]
[CategoryAttribute("Behavior")]
[NotifyParentPropertyAttribute(true)]
[DesignerSerializationVisibilityAttribute()]
[PersistenceModeAttribute()]
[DescriptionAttribute("If DownlevelMode is TextBox, this property exposes the Textbox which is rendered.")]
public: __property DownlevelTextArea* get_DownlevelTextArea();
public: __property void set_DownlevelTextArea(
DownlevelTextArea* value
);
[C++/CLI]
[CategoryAttribute("Behavior")]
[NotifyParentPropertyAttribute(true)]
[DesignerSerializationVisibilityAttribute()]
[PersistenceModeAttribute()]
[DescriptionAttribute("If DownlevelMode is TextBox, this property exposes the Textbox which is rendered.")]
public:
property DownlevelTextArea^ DownlevelTextArea {
DownlevelTextArea^ get();
void set (DownlevelTextArea^ value);
}
A DownlevelTextArea control representing the textarea rendered to the user.
You have two choices as to what downlevel (non-compatible) browsers see when they load the editor, a DownlevelLabel or a DownlevelTextArea. Use the Label if the user CANNOT continue without a compatible browser. You can use the Label to display a message such as "Please upgrade your browser to IE 5.5+ or Mozilla 1.3+". Use the TextArea if the user can continue with a comaptible browser. In this case, a standard HTML TEXTAREA will be displayed to the user, allowing them to enter plain text.
Platforms: Windows 98, Windows NT 4.0, Windows ME, Windows 2000, Windows XP, Windows Server 2003, Windows Vista
HtmlBox Class | HtmlBox Members
Send comments on this topic.
Documentation version 3.2.0.0.
© 2009 Dart Communications. All rights reserved.