Fluqi.Widget.jSelectMenu.SelectMenu.WithAttribute C# (CSharp) Метод

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

Registers an HTML attribute to be added to the control when it is rendered.
public WithAttribute ( string attrName, string attrValue ) : SelectMenu
attrName string Name of the HTML attribute, e.g. "Menu" or "id" for example
attrValue string Value to be applied when the attribute is rendered
Результат SelectMenu
		new public SelectMenu WithAttribute(string attrName, string attrValue) {
			base.AddAttribute(attrName, attrValue);
			return this;
		}