T Thore Berntsen Apr 14, 2005 #1 I need to find the Name of a MenuItem. Does anyone know how that is done? Thore Berntsen
S Sean Hederman Apr 14, 2005 #3 Thore Berntsen said: I need to find the Name of a MenuItem. Does anyone know how that is done? Thore Berntsen Click to expand... MenuItem menuItem = new MenuItem(); string name = menuItem.Site.Name;
Thore Berntsen said: I need to find the Name of a MenuItem. Does anyone know how that is done? Thore Berntsen Click to expand... MenuItem menuItem = new MenuItem(); string name = menuItem.Site.Name;
S Sean Hederman Apr 14, 2005 #4 Sean Hederman said: MenuItem menuItem = new MenuItem(); Click to expand... Oops! This wouldn't actually work since the Site hasn't been set yet. However, you can use the line below on a menu item that's been created and added to the Control.
Sean Hederman said: MenuItem menuItem = new MenuItem(); Click to expand... Oops! This wouldn't actually work since the Site hasn't been set yet. However, you can use the line below on a menu item that's been created and added to the Control.