MESCIUS SPREAD for ASP.NET 10.0J
Password プロパティ

セルにパスワードが設定されているかどうかを取得または設定します。
構文
'Declaration
 
Public Property Password As Boolean
public bool Password {get; set;}

プロパティ値

パスワードが設定される場合はTrue、それ以外の場合はFalse
次のサンプルコードは、テキスト型セルのパスワードのフィールドを設定します。
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
参照

TextCellType クラス
TextCellType メンバ

 

 


© MESCIUS inc. All rights reserved.