ComponentOne PDF for .NET
CSJ2K.j2k.util Namespace / ISRandomAccessIO Class / ISRandomAccessIO Constructor / ISRandomAccessIO Constructor(Stream,Int32,Int32,Int32)
The initial size for the cache buffer, in bytes.
The size increment for the cache buffer, in bytes.
The maximum size for the cache buffer, in bytes.

In This Topic
    ISRandomAccessIO Constructor(Stream,Int32,Int32,Int32)
    In This Topic
    Creates a new RandomAccessIO wrapper for the given InputStream 'is'. The internal cache buffer will have size 'size' and will increment by 'inc' each time it is needed. The maximum buffer size is limited to 'maxsize'.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal is_Renamed As Stream, _
       ByVal size As Integer, _
       ByVal inc As Integer, _
       ByVal maxsize As Integer _
    )
    public ISRandomAccessIO( 
       Stream is_Renamed,
       int size,
       int inc,
       int maxsize
    )

    Parameters

    is_Renamed
    size
    The initial size for the cache buffer, in bytes.
    inc
    The size increment for the cache buffer, in bytes.
    maxsize
    The maximum size for the cache buffer, in bytes.
    See Also