Link Search Menu Expand Document

SSpread.TypeTextShadow Property

In the label type cell, set whether to display the cell so that it looks convex.

Only valid for cells with the CellType property set to $CellTypeStaticText (label type). Before setting this property, use the Col , Row properties, and so on to specify what to do.

Specify $TRUE if you want it to look convex, otherwise specify $FALSE . The initial value is $FALSE.(In the cells of column header and row header, the initial value is $TRUE )

Set the TypeTextShadowIn property if you want the cells to appear concave . If you set both the TypeTextShadow and TypeTextShadowIn properties to $TRUE , the TypeTextShadow property takes precedence.

You can use the ShadowColor , ShadowDark , ShadowLight , ShadowText properties to set the uneven design.

This property is subject to property inheritance for label cells .

Notes on property inheritance of label type cells.

Example of use

Col = 3;
Row = 2;
CellType = $ CellTypeStaticText;
TypeTextShadow = $ TRUE;
TypeTextShadowIn = $ FALSE;
Text = "sample";
 
BlockMode = $ TRUE;
Col = 3;
Row = 3;
Col2 = 5;
Row2 = 5;
CellType = $ CellTypeStaticText;
TypeTextShadow = $ FALSE;
TypeTextShadowIn = $ TRUE;
Text = "sample";
BlockMode = $ FALSE;

Related item
CellType , ShadowColor , ShadowDark , ShadowLight , ShadowText , TypeTextShadowIn properties