BitMiracle.LibTiff.Classic.Tiff.SetWriteOffset C# (CSharp) Method

SetWriteOffset() public method

Sets the current write offset.
This should only be used to set the offset to a known previous location (very carefully), or to 0 so that the next write gets appended to the end of the file.
public SetWriteOffset ( long offset ) : void
offset long The write offset.
return void
        public void SetWriteOffset(long offset)
        {
            m_curoff = (uint)offset;
        }
Tiff