Hello,
We have the following situation: text in preview window and on paper after print ends with ellipses, the last text row is absent.
Several clarifications:
- it's WPF application;
- Telerik Reporting Q2 2012;
- there is global style for textblock
<
Style
x:Key
=
"{x:Type TextBlock}"
TargetType
=
"{x:Type TextBlock}"
>
<
Setter
Property
=
"TextTrimming"
Value
=
"CharacterEllipsis"
/>
<
Setter
Property
=
"ToolTipService.ShowOnDisabled"
Value
=
"True"
/>
<
Style.Triggers
>
<
Trigger
Property
=
"IsEnabled"
Value
=
"False"
>
<
Setter
Property
=
"Foreground"
Value
=
"{DynamicResource DisabledForegroundBrush}"
/>
</
Trigger
>
</
Style.Triggers
>
</
Style
>
- if this style is absent, all works fine. But this is not the solution.
- if we redefine the style for textblock in preview window, like this:
<
Style
x:Key
=
"{x:Type TextBlock}"
TargetType
=
"{x:Type TextBlock}"
>
<
Setter
Property
=
"TextTrimming"
Value
=
"None"
/>
</
Style
>
Is there any solution to this problem?