Draws the specified text string starting from the specified
position.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public void DrawString(
PdfPoint position,
string text
)
VB
Public Sub DrawString (
position As PdfPoint,
text As String
)
Parameters
- position
- Type: BitMiracle.Docotic.Pdf.PdfPoint
A PdfPoint structure that
specifies the upper-left corner of the drawn text. - text
- Type: System.String
The string to draw.
Remarks
The string represented by the
text
parameter always spans only one line. Please use
DrawText() if you
want to draw more than one line of text.
See Also