RadEditor for ASP.NET

RadEditor Send comments on this topic.
Height Property
See Also 
Telerik.WebControls Namespace > RadEditor Class : Height Property


Gets or sets the height of the RadEditor box.   

 

Namespace: Telerik.WebControls
Assembly: RadEditor (in RadEditor.dll)

Syntax

Visual Basic (Declaration) 
Overrides Public Property Height As Unit
Visual Basic (Usage)Copy Code
Dim instance As RadEditor
Dim value As Unit
 
instance.Height = value
 
value = instance.Height
C# 
public override Unit Height {get; set;}

Return Value

A Unit that represents the height of the control. The default value is 400px.

Remarks

By default moving toolbars and modules around editors docking zones are allowed. Such re-arrangements can alter the editor's size.

The page's DOCTYPE can also have effect on the editors size in IE. For example the following two doctypes set Internet Explorer in strict mode.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" >
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

Due to a bug in the rendering implementation of Internet Explorer, the Height of the whole editor (toolbars, content area and modules) is assigned to the editor ContentArea - in effect making the editor "taller" than expected. The developers that want to use DOCTYPES other that the default quirks mode should have this fact in mind and set the editors Height to a smaller value.

Requirements

Platforms: Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also