Fluqi.Widget.jSelectMenu.SelectMenu.Reset C# (CSharp) Method

Reset() protected method

Initialises the control back to its initial state
protected Reset ( TextWriter writer, string id ) : void
writer System.IO.TextWriter Writer to use when rendering the control
id string ID to render for the control
return void
		protected internal void Reset(TextWriter writer, string id) {
			this.PlugInName = "selectmenu";
			this.Writer = writer;
			this.ID = id;
			this.Options = new Options(this);
			this.Events = new Events(this);
			this.Methods = new Methods(this);
			this.Rendering = new Rendering(this);
		}