[]
        
(Showing Draft Content)

C1.Win.C1Chart.Title.AppendRtfText

AppendRtfText Method

AppendRtfText(string, Color)

Appends the specified text to the Rft string using the specified color and the object default font. Transparent colors cannot be used by an Rtf rendering.

Declaration
public void AppendRtfText(string Text, Color Color)
Parameters
Type Name Description
string Text

Text string to be appended to existing Rtf.

Color Color

ForeColor of the appended text.

See Also

AppendRtfText(string, Font)

Appends the specified text to the Rft string using the object ForeColor and the specified font. Transparent colors cannot be used for an Rtf rendering.

Declaration
public void AppendRtfText(string Text, Font Font)
Parameters
Type Name Description
string Text

Text string to be appended to existing Rtf.

Font Font

Font of the appended text.

See Also

AppendRtfText(string, Color, Font)

Appends the specified text to the Rtf string using the specified color and font. Transparent colors cannot be used for an Rtf rendering.

Declaration
public void AppendRtfText(string Text, Color Color, Font Font)
Parameters
Type Name Description
string Text

Text string to be appended to existing Rtf.

Color Color

ForeColor of the appended text.

Font Font

Font of the appended text.

See Also

AppendRtfText(string, Color, Font, HorizontalAlignment)

Appends the specified text to the Rtf string using the specified color, font and alignment. Transparent colors cannot be used for an Rtf rendering.

Declaration
public void AppendRtfText(string Text, Color Color, Font Font, HorizontalAlignment Align)
Parameters
Type Name Description
string Text

Text string to be appended to existing Rtf.

Color Color

ForeColor of the appended text.

Font Font

Font of the appended text.

HorizontalAlignment Align

Alignment of the appended text.

See Also