ScreenToGif.Pages.Processing.MaximumValue C# (CSharp) Метод

MaximumValue() публичный статический Метод

The maximum value to the progress bar.
public static MaximumValue ( int max ) : void
max int The amount of frames in the process.
Результат void
        public static void MaximumValue(int max)
        {
            _max = max + 1;
            Page.progressBarEncoding.Maximum = _max;
        }