BitMiracle.LibTiff.Classic.Internal.DumpModeCodec.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 override bool Seek(int row)
        {
            m_tif.m_rawcp += row * m_tif.m_scanlinesize;
            m_tif.m_rawcc -= row * m_tif.m_scanlinesize;
            return true;
        }