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

SetMode() public method

Sets the new mode for the underlying file or stream.
public SetMode ( int mode ) : int
mode int The new mode for the underlying file or stream.
return int
        public int SetMode(int mode)
        {
            int prevMode = m_mode;
            m_mode = mode;
            return prevMode;
        }
Tiff