ControlBuilder::NeedsTagInnerText Method ()
Determines if the control builder needs to get its inner text. If so, the SetTagInnerText method must be called. This method is called by the ASP.NET page framework.
Assembly: System.Web (in System.Web.dll)
Return Value
Type: System::Booleantrue if the control builder needs to get its inner text. The default is false.
The inner text is the text between the opening and closing tags of the control.
This method is called by the ASP.NET page framework during parsing and is not intended to be called directly in you code.
The following example uses the InDesigner property when the NeedsTagInnerText method is called. When a control has this builder attached to it, the NeedsTagInnerText determines whether the control is being accessed at design-time through a designer. The NeedsTagInnerText returns the value of the InDesigner property, and then the SetTagInnerText method is called. If the InDesigner property is set to false, an Exception is thrown. Otherwise, the inner text of the control is returned on the SetTagInnerText call.
Available since 1.1