Paint.CanvasPlayback.Close C# (CSharp) Method

Close() public method

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

                this.fileStream = null;
            }
        }