Spread ASP.NET 6.0 Product Documentation
MaxLength Property
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > TextCellType Class : MaxLength Property


Glossary Item Box

Gets or sets the maximum length of text of the cell.

Syntax

Visual Basic (Declaration) 
Public Property MaxLength As Integer
Visual Basic (Usage)Copy Code
Dim instance As TextCellType
Dim value As Integer
 
instance.MaxLength = value
 
value = instance.MaxLength
C# 
public int MaxLength {get; set;}

Property Value

Integer number of characters in the length

Remarks

This property determines the maximum number of characters that can be entered in the text cell. You can use this property to restrict the length of text entered in the cell for values such as postal codes and telephone numbers, or to restrict the length of text entered when the data is to be entered in a database. You can limit the text entered into the cell to the maximum length of the corresponding field in the database. The value should be a positive, non-zero value.

Note: In code, you can set the value of the Text property or Value property to a value that has a length greater than the value specified by the MaxLength property. This property only affects text entered into the control at run time either by pasting or typing.

Example

This example sets the maximum size for a text cell by setting the length to five characters.
C#Copy Code
FarPoint.Web.Spread.TextCellType textcell = new FarPoint.Web.Spread.TextCellType();
textcell.MaxLength = 5; 
FpSpread1.Sheets[0].Cells[0, 0].CellType = textcell;

Visual BasicCopy Code
Dim textcell As New FarPoint.Web.Spread.TextCellType()
textcell.MaxLength = 5 
FpSpread1.Sheets(0).Cells(0, 0).CellType = textcell

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.