TextObject
Hallo,
How can I set the Border BottomLine Style + Color under action before print?
I've tried Name.Border.BottomLine.Style = BorderStyle.FixedSingle;
Or set the Line to Bottom... Cant get it to work.
Some records the TextObject needs to be underlined.
The color works Name.Border.BottomLine.Color = Color.Silver;
Thanks,
Rainer
How can I set the Border BottomLine Style + Color under action before print?
I've tried Name.Border.BottomLine.Style = BorderStyle.FixedSingle;
Or set the Line to Bottom... Cant get it to work.
Some records the TextObject needs to be underlined.
The color works Name.Border.BottomLine.Color = Color.Silver;
Thanks,
Rainer
Comments
You need to indicate which lines you want in the border:
Text1.Border.Lines = BorderLines.Bottom;
-or-
Text1.Border.Lines = BorderLines.Top | BorderLines.Bottom;