Hi,
I try add LabelStyle to Feature and I would like to have a multiline text.
So, I do something like this:
feature.Styles.Add(new LabelStyle { Text = String.Concat("bleble\r\n123\r\nABC", Environment.NewLine, someX, " ", someY) });
and I have empty boxes there where the line breaks are.
bleble□
123□
ABC□
x y
Is it something with Font (FontFamily=Verdana, Size=12)?
Regards,
Łukasz

Try to remove the '\r'.
works, thanks!