I can see that the control tries to implement word-spacing:
```
_actualWordSpacing = CssUtils.WhiteSpace(g, this);
if (WordSpacing != CssConstants.Normal)
{
string len = RegexParserUtils.Search(RegexParserUtils.CssLength, WordSpacing);
_actualWordSpacing += CssValueParser.ParseLength(len, 1, this);
}
```
But this doesnot appear to change the output of the renderer???
Kris
```
_actualWordSpacing = CssUtils.WhiteSpace(g, this);
if (WordSpacing != CssConstants.Normal)
{
string len = RegexParserUtils.Search(RegexParserUtils.CssLength, WordSpacing);
_actualWordSpacing += CssValueParser.ParseLength(len, 1, this);
}
```
But this doesnot appear to change the output of the renderer???
Kris