Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / PdfArray Class / CreateStringsArray Method
The list of strings.
Indicates whether to skip empty or null strings.

In This Topic
    CreateStringsArray Method
    In This Topic
    Creates the PdfArray of PdfString objects, returns null if strings is null.
    Syntax
    'Declaration
     
    Public Shared Function CreateStringsArray( _
       ByVal strings As System.Collections.Generic.IEnumerable(Of String), _
       Optional ByVal skipEmpty As System.Boolean _
    ) As PdfArray
    public static PdfArray CreateStringsArray( 
       System.Collections.Generic.IEnumerable<string> strings,
       System.bool skipEmpty
    )

    Parameters

    strings
    The list of strings.
    skipEmpty
    Indicates whether to skip empty or null strings.

    Return Value

    The created PdfArray object.
    See Also