Axiom.Samples.SdkTrayManager.CreateTextBox C# (CSharp) 메소드

CreateTextBox() 공개 메소드

public CreateTextBox ( TrayLocation trayLoc, String name, System.String caption, Real width, Real height ) : TextBox
trayLoc TrayLocation
name String
caption System.String
width Real
height Real
리턴 TextBox
		public TextBox CreateTextBox( TrayLocation trayLoc, String name, DisplayString caption, Real width, Real height )
		{
			TextBox tb = new TextBox( name, caption, width, height );
			MoveWidgetToTray( tb, trayLoc );
			tb.AssignedTrayListener = listener;
			return tb;
		}