Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Imaging.jpeg.jj2000.j2k.image Namespace / DataBlk Class / getData Method

In This Topic
    getData Method (DataBlk)
    In This Topic
    Returns the array containing the data, or null if there is no data. The returned array is of the type returned by getDataType (e.g., for TYPE_INT, it is a int[]).

    Each implementing class should provide a type specific equivalent method (e.g., getDataInt() in GrapeCity.Documents.Imaging.jpeg.jj2000.j2k.image.DataBlkInt) which returns an array of the correct type explicitly and not through an System.Object.

    Syntax
    'Declaration
     
    Public MustOverride Function getData() As System.Object
    public abstract System.object getData()

    Return Value

    The array containing the data, or null if there is no data.
    See Also