BitMiracle.LibTiff.Classic.TiffCodec.Seek C# (CSharp) Method

Seek() public method

Seeks the specified row in the strip being processed.
public Seek ( int row ) : bool
row int The row to seek.
return bool
        public virtual bool Seek(int row)
        {
            Tiff.ErrorExt(m_tif, m_tif.m_clientdata, m_tif.m_name,
                "Compression algorithm does not support random access");
            return false;
        }