SSpread.TypeTextShadowIn Property
In the label cell, set whether the cell is displayed so that it looks concave.
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 concave, otherwise specify $FALSE . The initial value is $FALSE .
Set the TypeTextShadow property if you want the cells to appear convex . 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.
Use case
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 , TypeTextShadow properties