I was wondering whether it is possible to specify a line height or padding for text that wraps within a table cell?
Hi Chris,
<?xml version="1.0" encoding="utf-8" ?><o:p></o:p>
<Pdf xmlns="Aspose.Pdf">
<Section>
<Text MarginTop="30" BackgroundColor="Beige">
<Segment Alignment="center" Color="Red" FontSize="16">
this is text content
</Segment>
</Text>
<Text MarginTop="30" LineSpacing="15">
<Segment FontSize="20" FontName="Arial Narrow"
IsTrueTypeFontBold="true" IsTrueTypeFontItalic="true">
This is TrueType font 'Arial Narrow Bold Italic' with line spacing as 15 and line break which can depict the line spacing mechanism.
</Segment>
</Text>
</Section>
</Pdf>
Thanks for that - works great
Hi Chris,