Gets or sets whether the control resizes itself based on the font.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Property AutoHeight As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SuperEditBase
Dim value As Boolean
instance.AutoHeight = value
value = instance.AutoHeight |
C# | |
---|
public virtual bool AutoHeight {get; set;} |
Property Value
Boolean value:
true for the edit control to automatically set the height;
false otherwise
Remarks
Example
C# | Copy Code |
---|
control.Text = "Font";
Font fvalue = new Font("Comic Sans MS",14,System.Drawing.FontStyle.Bold);
control.Font = fvalue;
control.AutoHeight = true;
|
Visual Basic | Copy Code |
---|
control.Text = "Font"
Dim fvalue As Font
fvalue = New Font("Comic Sans MS", 14, FontStyle.Bold)
control.Font = fvalue
control.AutoHeight = True
|
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also