ImageGear .NET v25.2 - Updated
ImageGear.Web.Services Assembly / ImageGear.Web.UI Namespace / ArtConnection Class / Read Method / Read(String,Int32,Int32) Method
Source document identifier of an ImageGear XML art document.
First page to begin the page reading sequence.
Number of pages to read starting with the first page number.




In This Topic
    Read(String,Int32,Int32) Method
    In This Topic
    Reads a number of pages and returns a list of json string objects with associated page numbers.
    Syntax
    'Declaration
     
    Public Overloads Function Read( _
       ByVal documentIdentifier As String, _
       ByVal firstPageNumber As Integer, _
       ByVal countOfPages As Integer _
    ) As ReadOnlyCollection(Of ArtPageJsonPair)
    'Usage
     
    Dim instance As ArtConnection
    Dim documentIdentifier As String
    Dim firstPageNumber As Integer
    Dim countOfPages As Integer
    Dim value As ReadOnlyCollection(Of ArtPageJsonPair)
     
    value = instance.Read(documentIdentifier, firstPageNumber, countOfPages)

    Parameters

    documentIdentifier
    Source document identifier of an ImageGear XML art document.
    firstPageNumber
    First page to begin the page reading sequence.
    countOfPages
    Number of pages to read starting with the first page number.

    Return Value

    List of objects that contain the json art annotations associated with its page.
    Remarks

    Page numbers start at zero for the first page in a document.

    See Also