Spread Windows Forms 12.0 Product Documentation
MaximumLength Property (GeneralEditor)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.CellType Namespace > GeneralEditor Class : MaximumLength Property
Gets or sets the maximum number of characters allowed.
Syntax
'Declaration
 
Public Property MaximumLength As Integer
'Usage
 
Dim instance As GeneralEditor
Dim value As Integer
 
instance.MaximumLength = value
 
value = instance.MaximumLength
public int MaximumLength {get; set;}

Property Value

Integer maximum number of characters in the length
Example
FarPoint.Win.Spread.CellType.GeneralEditor ge = (FarPoint.Win.Spread.CellType.GeneralEditor)fpSpread1.EditingControl; 
ge.BorderStyle = BorderStyle.Fixed3D; 
ge.MaximumLength = 40;
ge.Multiline = true;
ge.WordWrap = true;

Dim ge As FarPoint.Win.Spread.CellType.GeneralEditor = CType(FpSpread1.EditingControl, FarPoint.Win.Spread.CellType.GeneralEditor)
ge.BorderStyle = BorderStyle.Fixed3D
ge.MaximumLength = 40
ge.Multiline = True
ge.WordWrap = True
See Also

Reference

GeneralEditor Class
GeneralEditor Members