Paint.CanvasPlayback.Close C# (CSharp) Méthode

Close() public méthode

Closes the file stream.
public Close ( ) : void
Résultat void
        public void Close()
        {
            if (this.fileStream != null)
            {
                this.fileStream.Close();

                this.fileStream = null;
            }
        }