MobileTextWriter.ExitFormat Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Ends a block that has been using the character formatting from a specified style. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
Overloads
ExitFormat(Style) |
Ends a block that has been using the character formatting from a specified style. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET. |
ExitFormat(Style, Boolean) |
Ends a block that has been using the character formatting from a specified style. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET. |
ExitFormat(Style)
Ends a block that has been using the character formatting from a specified 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 ExitFormat(System::Web::UI::MobileControls::Style ^ style);
public virtual void ExitFormat (System.Web.UI.MobileControls.Style style);
abstract member ExitFormat : System.Web.UI.MobileControls.Style -> unit
override this.ExitFormat : System.Web.UI.MobileControls.Style -> unit
Public Overridable Sub ExitFormat (style As Style)
Parameters
- style
- Style
The specified style to use for formatting characters.
See also
Applies to
ExitFormat(Style, Boolean)
Ends a block that has been using the character formatting from a specified 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 ExitFormat(System::Web::UI::MobileControls::Style ^ style, bool breakAfter);
public virtual void ExitFormat (System.Web.UI.MobileControls.Style style, bool breakAfter);
abstract member ExitFormat : System.Web.UI.MobileControls.Style * bool -> unit
override this.ExitFormat : System.Web.UI.MobileControls.Style * bool -> unit
Public Overridable Sub ExitFormat (style As Style, breakAfter As Boolean)
Parameters
- style
- Style
The specified style to use for formatting characters.
- 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
.