Axiom.Samples.SdkTrayManager.CreateProgressBar C# (CSharp) Метод

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

public CreateProgressBar ( TrayLocation trayLoc, String name, System.String caption, Real width, Real commentBoxWidth ) : Axiom.Samples.ProgressBar
trayLoc TrayLocation
name String
caption System.String
width Real
commentBoxWidth Real
Результат Axiom.Samples.ProgressBar
		public ProgressBar CreateProgressBar( TrayLocation trayLoc, String name, DisplayString caption, Real width, Real commentBoxWidth )
		{
			ProgressBar pb = new ProgressBar( name, caption, width, commentBoxWidth );
			MoveWidgetToTray( pb, trayLoc );
			return pb;
		}