Hello,
I've taken over some code that someone else wrote and I need to modify it. I'm trying to vertically center a bullet next to text. Right now, the bullet is showing up at the BOTTOM of the text (see attachment).
Here is a code snippet where bullets are added:
Private Const BulletStyle As String = "Bullet1"
Private Const BulletSpacing As Integer = 12
Private Const BulletSize As Integer = 3
[....]
heading = New Heading(pdf, sec1, 1)
seg1 = New Segment(heading)
heading.Segments.Add(seg1)
heading.UserLabel = BulletStyle
heading.LabelWidth = BulletSpacing
heading.LabelFontSize = BulletSize
seg1.Content = RepresentativeClientEngagements.Trim
seg1.TextInfo.FontSize = 9
seg1.TextInfo.FontName = "Times New Roman"
sec1.Paragraphs.Add(heading)
Any ideas?
Thanks,
- Joe