AddonHelper.Addon.cProgressBar.Set C# (CSharp) Метод

Set() публичный Метод

Set the current progress
public Set ( int currentLocation ) : void
currentLocation int The current location in the file
Результат void
            public void Set(int currentLocation)
            {
                if (!Canceled && this.Form != null) {
                    try {
                        this.Form.Invoke(new Action(delegate {
                            this.updateStatus(currentLocation);
                        }));
                    } catch { }
                }
            }