XhtmlControlAdapter.ClearPendingBreakIfDeviceBreaksOnBlockLevel Method

Definition

Clears a pending break if the target device breaks on block elements. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

protected:
 virtual void ClearPendingBreakIfDeviceBreaksOnBlockLevel(System::Web::UI::MobileControls::Adapters::XhtmlAdapters::XhtmlMobileTextWriter ^ writer);
protected virtual void ClearPendingBreakIfDeviceBreaksOnBlockLevel (System.Web.UI.MobileControls.Adapters.XhtmlAdapters.XhtmlMobileTextWriter writer);
abstract member ClearPendingBreakIfDeviceBreaksOnBlockLevel : System.Web.UI.MobileControls.Adapters.XhtmlAdapters.XhtmlMobileTextWriter -> unit
override this.ClearPendingBreakIfDeviceBreaksOnBlockLevel : System.Web.UI.MobileControls.Adapters.XhtmlAdapters.XhtmlMobileTextWriter -> unit
Protected Overridable Sub ClearPendingBreakIfDeviceBreaksOnBlockLevel (writer As XhtmlMobileTextWriter)

Parameters

writer
XhtmlMobileTextWriter

The XhtmlMobileTextWriter object used to render the server control content on the client's browser.

Remarks

If the target device requires breaks on block-level elements such as <div>, the text writer specified by writer sets a pending break when starting to render the element, and automatically renders a break (<br />) at the end of the element. If the content of the element extends beyond one logical page on the device, the adapter clears the pending break at the end of the page.

This method is primarily used by the .NET Framework internally.

Applies to

See also