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;
        }