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

SetIcon() public method

Sets the icon which appears to the left of the menu title.
Use this for adding your own icon. The "ui-icon" jQuery UI class will still be added first (so you can use this for sizing), but the "ui-icon" prefix won't be added in front of your CSS class.
public SetIcon ( string cssClass ) : MenuItem
cssClass string
return MenuItem
		public MenuItem SetIcon(string cssClass) {
			this.Icon = cssClass;
			return this;
		}

Same methods

MenuItem::SetIcon ( Core value ) : MenuItem