MobileTextWriter.ExitLayout Method

Definition

Ends a block by using the formatting from a given style.

Overloads

ExitLayout(Style)

Ends a block by using the formatting from a given style. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

ExitLayout(Style, Boolean)

Ends a block by using the formatting from a given style. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

ExitLayout(Style)

Ends a block by using the formatting from a given style. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 virtual void ExitLayout(System::Web::UI::MobileControls::Style ^ style);
public virtual void ExitLayout (System.Web.UI.MobileControls.Style style);
abstract member ExitLayout : System.Web.UI.MobileControls.Style -> unit
override this.ExitLayout : System.Web.UI.MobileControls.Style -> unit
Public Overridable Sub ExitLayout (style As Style)

Parameters

style
Style

The style reference.

Remarks

The EnterLayout and ExitLayout methods allow a device adapter to emit markup, in order to begin and end a block by using the formatting from a given style.

See also

Applies to

ExitLayout(Style, Boolean)

Ends a block by using the formatting from a given style. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 virtual void ExitLayout(System::Web::UI::MobileControls::Style ^ style, bool breakAfter);
public virtual void ExitLayout (System.Web.UI.MobileControls.Style style, bool breakAfter);
abstract member ExitLayout : System.Web.UI.MobileControls.Style * bool -> unit
override this.ExitLayout : System.Web.UI.MobileControls.Style * bool -> unit
Public Overridable Sub ExitLayout (style As Style, breakAfter As Boolean)

Parameters

style
Style

The style reference.

breakAfter
Boolean

If breakAfter is true, a break is added after the closing style element. The first form of the method assumes breakAfter to be true.

Remarks

The EnterLayout and ExitLayout methods allow a device adapter to emit markup, in order to begin and end a block by using the formatting from a given style.

See also

Applies to