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

SetFileName() public method

Sets the new ID string for this Tiff.
Please note, that name is an arbitrary string used as ID for this Tiff. It's not required to be a file name or anything meaningful at all.
public SetFileName ( string name ) : string
name string The ID string for this .
return string
        public string SetFileName(string name)
        {
            string old_name = m_name;
            m_name = name;
            return old_name;
        }
Tiff