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