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

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

public CreateLongSelectMenu ( TrayLocation trayLoc, String name, System.String caption, Real width, Real boxWidth, int maxItemsShown, IList items ) : SelectMenu
trayLoc TrayLocation
name String
caption System.String
width Real
boxWidth Real
maxItemsShown int
items IList
Результат SelectMenu
		public SelectMenu CreateLongSelectMenu( TrayLocation trayLoc, String name, DisplayString caption, Real width, Real boxWidth, int maxItemsShown, IList<String> items )
		{
			SelectMenu sm = new SelectMenu( name, caption, width, boxWidth, maxItemsShown );
			MoveWidgetToTray( sm, trayLoc );
			sm.AssignedTrayListener = listener;
			if ( !( items.Count == 0 ) )
				sm.Items = items;
			return sm;
		}

Same methods

SdkTrayManager::CreateLongSelectMenu ( TrayLocation trayLoc, String name, System.String caption, Real width, Real boxWidth, int maxItemsShown ) : SelectMenu