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

Restart() public méthode

Reset the input stream to the beginning ready for starting the playback all over again
public Restart ( ) : void
Résultat void
        public void Restart()
        {
            // skip past the final brush size and color as we don't need to know them
            fileStream.Seek(12, SeekOrigin.Begin);
            this.commandsReadSoFar = 0;
        }