Link Search Menu Expand Document

SSpread.TypeEditPassword Property

In the character cell, set whether to use the password display format ( * is displayed instead of the entered characters).

Only valid for cells with the CellType property set to $CellTypeEdit (character type). Before setting this property, use the Col , Row properties, etc. to specify what you want to process.

Disabled if the TypeEditMultiLine property is set to $TRUE .

Specify $TRUE to use the display format for passwords, otherwise specify $FALSE .
The initial value is $FALSE .

This property is subject to property inheritance for character cells.

Example of use

Col = 3;
Row = 2;
CellType = $CellTypeEdit;
TypeEditPassword = $ TRUE;
Text = "sample";
 
BlockMode = $ TRUE;
Col = 3;
Row = 3;
Col2 = 5;
Row2 = 5;
CellType = $CellTypeEdit;
TypeEditPassword = $ TRUE;
Text = "abc";
BlockMode = $ FALSE;

Related item
CellType , TypeEditMultiLine property