VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf Namespace / PdfContentRenderer Class / DrawString(PdfContentRenderingContext,UInt64[]) Method
Syntax Remarks Requirements SeeAlso
In This Topic
    DrawString(PdfContentRenderingContext,UInt64[]) Method (PdfContentRenderer)
    In This Topic
    Draws a text string.
    Syntax
    'Declaration
    
    <CLSCompliantAttribute(False)>
    Public Overridable Sub DrawString( _
    ByVal context
    The rendering context.
    As PdfContentRenderingContext, _
    ByVal charCodes
    The codes, in font encoding, of text characters.
    () As ULong _
    )
    [CLSCompliant(False)]
    public virtual void DrawString(
    PdfContentRenderingContext context,
    ulong[] charCodes
    )
    [CLSCompliant(False)]
    public: virtual void DrawString(
    PdfContentRenderingContext* context,
    ulong[]* charCodes
    )
    [CLSCompliant(False)]
    public:
    virtual void DrawString(
    PdfContentRenderingContext^ context,
    array<ulong>^ charCodes
    )

    Parameters

    context
    The rendering context.
    charCodes
    The codes, in font encoding, of text characters.
    Remarks

    The ConvertToUnicodeString(UInt64[]) method should be used for converting character codes to a string.

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also