Spread WinForms 15
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcTextBox Class / IntegralHeight Property


In This Topic
IntegralHeight Property
In This Topic
Gets or sets a value that indicates whether the GcTextBox should resize to avoid showing partial lines.
Syntax
'Declaration
 
Public Property IntegralHeight As Boolean
 
'Usage
 
Dim instance As GcTextBox
Dim value As Boolean
 
instance.IntegralHeight = value
 
value = instance.IntegralHeight

Property Value

A bool value that indicates whether editing should resize to avoid showing partial lines.
The default is false.
Remarks
When this property is set to true, the control automatically resizes to ensure that a text line is not partially displayed. If you want to maintain the original size of the GcTextBox based on the space requirements of your form, set this property to false. This property only takes effect when the Multiline property is true.
See Also