public static Boolean End(IUserProgressBarObject IUserProgressBarinstance)
 {
     return(IUserProgressBarinstance.IUserProgressBarInstance.End());
 }
 public static Int32 UpdateProgress(IUserProgressBarObject IUserProgressBarinstance, Int32 Position)
 {
     return(IUserProgressBarinstance.IUserProgressBarInstance.UpdateProgress(Position));
 }
 public static Boolean UpdateTitle(IUserProgressBarObject IUserProgressBarinstance, String ProgressBarTitle)
 {
     return(IUserProgressBarinstance.IUserProgressBarInstance.UpdateTitle(ProgressBarTitle));
 }
 public static Boolean Start(IUserProgressBarObject IUserProgressBarinstance, Int32 LowerBound, Int32 UpperBound, String ProgressBarTitle)
 {
     return(IUserProgressBarinstance.IUserProgressBarInstance.Start(LowerBound, UpperBound, ProgressBarTitle));
 }