ScreenToGif.Pages.Processing.MaximumValue C# (CSharp) Method

MaximumValue() public static method

The maximum value to the progress bar.
public static MaximumValue ( int max ) : void
max int The amount of frames in the process.
return void
        public static void MaximumValue(int max)
        {
            _max = max + 1;
            Page.progressBarEncoding.Maximum = _max;
        }