Fluqi.Widget.jMenuItem.MenuItem.SetTitle C# (CSharp) Method

SetTitle() public method

Changes the title that appears in the menu item.
Dunno why you'd want to do this after it's already been defined when adding the menu item but I'm leaving it here if only for the sake of consistency with the API.
public SetTitle ( string value ) : MenuItem
value string
return MenuItem
		public MenuItem SetTitle(string value) {
			this.Title = value;
			return this;
		}