次のサンプルコードは、テキスト型セルのパスワードのフィールドを設定します。
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