Spread for ASP.NET 8.0 Product Documentation
Password Property
Example 


Gets or sets whether the cell has a password.
Syntax
'Declaration
 
Public Property Password As Boolean
'Usage
 
Dim instance As TextCellType
Dim value As Boolean
 
instance.Password = value
 
value = instance.Password
public bool Password {get; set;}

Property Value

true if password set; false otherwise
Example
This example sets a password field for a text cell.
FarPoint.Web.Spread.TextCellType textcell = new FarPoint.Web.Spread.TextCellType();
textcell.Password = true; 
FpSpread1.Sheets[0].Cells[0, 0].CellType = textcell;

Dim textcell As New FarPoint.Web.Spread.TextCellType()
textcell.Password = True 
FpSpread1.Sheets(0).Cells(0, 0).CellType = textcell
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

TextCellType Class
TextCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.