Fluqi.Widget.jMenuItem.MenuItem.SetTitle C# (CSharp) 메소드

SetTitle() 공개 메소드

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
리턴 MenuItem
		public MenuItem SetTitle(string value) {
			this.Title = value;
			return this;
		}