Insert

Insert(int, string)

Inserts a formatted text fragment into the collection at a given index.

public void Insert(int index, string text)
Parameter Type Description
index Int32 The zero-based index at which formatted text fragment should be inserted.
text String The fragment text.

See Also


Insert(int, string, Font)

Inserts a formatted text fragment into the collection at a given index.

public void Insert(int index, string text, Font font)
Parameter Type Description
index Int32 The zero-based index at which formatted text fragment should be inserted.
text String The fragment text.
font Font The font of the text.

See Also


Insert(int, string, Font, Color)

Inserts a formatted text fragment into the collection at a given index.

public void Insert(int index, string text, Font font, Color foregroundColor)
Parameter Type Description
index Int32 The zero-based index at which formatted text fragment should be inserted.
text String The fragment text.
font Font The font of the text.
foregroundColor Color The foreground color of the text.

See Also


Insert(int, string, Font, Color, Color)

Inserts a formatted text fragment into the collection at a given index.

public void Insert(int index, string text, Font font, Color foregroundColor, Color backgroundColor)
Parameter Type Description
index Int32 The zero-based index at which formatted text fragment should be inserted.
text String The fragment text.
font Font The font of the text.
foregroundColor Color The foreground color of the text.
backgroundColor Color The background color of the text.

See Also