Hi, will using the VerticalTextRotationAngle the Render text is out of is floating box. (I put a red background to show it better)
Here is the sample of my XML, rotating properties are set in the code behind with
(pdf.Sections[0].GetObjectByID("fbDivision") as FloatingBox).VerticalTextRotationAngle = VerticalTextRotationType.AntiClockWise;
(pdf.Sections[0].GetObjectByID("fbTitle") as FloatingBox).VerticalTextRotationAngle = VerticalTextRotationType.AntiClockWise;
Attach is the picture of the probleme.
Still using aspose.pdf 5.0.0.0 (with total licence)
Thanks
<?xml version="1.0" encoding="utf-8" ?>
<Pdf xmlns="Aspose.Pdf" DestinationType="FitPage" IsLandscape="false" Author="Daniel" Creator="" BackgroundColor="White">
<Section ID="FrontPage" PageWidth="8.5inch" PageHeight="11inch" >
<FloatingBox id="fbDivision" Left="1inch" Top="1inch" width="2inch" height="0.75inch" backgroundcolor="red">
<text alignment="Center">
<Segment >Rotating.
</Segment>
</text>
</FloatingBox>
<FloatingBox id="fbTitle" Left="0.445inch" Top="1.0607inch" width="0.3558inch" height="1.208inch" backgroundcolor="red" >
<text MarginTop=".12inch" LineSpacing="1" >
<Segment id="sTitle" FontSize="17" Color="BLACK" >
Test 1
</Segment>
</text>
</FloatingBox>
</Section>
</Pdf>