System.Web.UI.WebControls.TextBox.AddParsedSubObject C# (CSharp) Method

AddParsedSubObject() protected method

protected AddParsedSubObject ( object obj ) : void
obj object
return void
		protected override void AddParsedSubObject (object obj)
		{
			LiteralControl l = obj as LiteralControl;
			if (l != null)
				Text = l.Text;
		}