Adds a text string with the specified style to the current paragraph content.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public ParagraphText AddText(
	string text,
	Style style
)
Visual Basic
Public Function AddText ( _
	text As String, _
	style As Style _
) As ParagraphText

Parameters

text
Type: System..::..String
The text string to add.
style
Type: C1.C1Preview..::..Style
The style to use to render the string.

Return Value

A ParagraphText object representing the specified text string.

Remarks

This method creates a ParagraphText, initializes it with the specified text and style, and adds it to the current collection.

See Also