System.Web.UI.WebControls.TextBox.AddParsedSubObject C# (CSharp) 메소드

AddParsedSubObject() 보호된 메소드

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