Justify FullJustify Text Alignment
Contents
[
Hide
]
Report builder does not support the capability to specify text alignment for textbox “Justify” and “FullJustify”. With Aspose.Pdf for Reporting Services, you can do that easily by adding custom properties.
Custom Property Name : TextAlignment
Custom Property Type : String
Custom Property Values : Justify, FullJustify
In report the code should be like the following:
Example
<Textbox Name="textbox1">
<value> AsposePdf4RS </value>
<CustomProperties>
<CustomProperty>
<Name>TextAlignment</Name>
<Value>Justify</Value>
</CustomProperty>
</CustomProperties>
</Textbox>