The starting position of the paragraph.
Position is zero based.
Example
Bold the first character of the paragraph:
TextArea1.StyledText.Text = "Hello, World!"
// Bold the first character
Var first As Integer = TextArea1.StyledText.Paragraph(1).StartPosition
TextArea1.StyledText.Bold(first, 1) = True