PDF .NET Library Documentation - PDF Technologies, Inc.
This function allows the writing of tagged text to the canvas.

Namespace:  PDFTech
Assembly:  PDFTechLib (in PDFTechLib.dll) Version: 1.0.0.0 (1.7.9.0)

Syntax

C#
public void AddTaggedText(
	string taggedText
)
Visual Basic (Declaration)
Public Sub AddTaggedText ( _
	taggedText As String _
)
Visual C++
public:
void AddTaggedText(
	String^ taggedText
)

Parameters

taggedText
Type: System..::.String
Text to be written

Remarks

The AddTaggedText function allows the writing of text regardless of text size or length. If the amount of text to be written exceeds the page capacity, overflowing text is automatically rendered on the next page. The returned value indicates the current page. The current position can be traced from the Cursor value.

Valid tags are the following:

  • font
  • b
  • i
  • u
  • st
  • br
  • sub
  • sup
  • a
  • p
  • hr

See Also