Creates and returns a CharacterRun at the beginning of this Element. The text to be inserted is specified as well as the font that should override the font found in the style of the character run's enclosing paragraph.

 public virtual CharacterRun InsertTextBefore(System.String text, Font props)
Public Overridable Function InsertTextBefore(ByVal text As String, ByVal props As Font) As CharacterRun

A String representing the text to insert.

A Font object representing the font that should override the font found in the style of the character run's enclosing paragraph.

The CharacterRun containing the inserted text.

CharacterRun charRun = e.InsertTextBefore("Here is some text.", fnt);
Dim charRun As CharacterRun = e.InsertTextBefore("Here is some text.", fnt)