Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Creates and returns a CharacterRun at the point represented by this Position. The text to be inserted is specified as well as whether this should be a new character run or part of the previous one.

Signature
C#
C#
 public CharacterRun InsertText(System.String text, boolean newRun)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Function InsertText(ByVal text As String, ByVal newRun As Boolean) As CharacterRun
{signature}
{parameters}
{param:text}A {{String}} representing the text to insert.{param}
{param:newRun}A {{boolean}} representing if this should have default formatting and become its own character run \(true\) or if it should assume the formatting of the first character in this element, becoming a part of that first character run.{param}
{returns}The {{CharacterRun}} containing the inserted text.{returns}
{example}{code:csharp|title=C#}
Parameters
Param
text
text

A String representing the text to insert.

Param
newRun
newRun

A boolean representing if this should have default formatting and become its own character run (true) or if it should assume the formatting of the first character in this element, becoming a part of that first character run.

Returns

The CharacterRun containing the inserted text.

Example
Code Block
csharp
csharp
titleC#

CharacterRun charRun = pos.InsertText("Here is some text.", true);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim charRun As CharacterRun = pos.InsertText("Here is some text.", True)
{code} {example}