XhtmlMobileTextWriter.WriteFullBeginTag(String) Method

Definition

Writes any tab spacing and the full opening tag of the specified markup element to the output stream. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 override void WriteFullBeginTag(System::String ^ tag);
public override void WriteFullBeginTag (string tag);
override this.WriteFullBeginTag : string -> unit
Public Overrides Sub WriteFullBeginTag (tag As String)

Parameters

tag
String

The markup element to write to the output stream.

Remarks

If the tag is not a block element, such as <p>, <div>, <table>, <ol>, the WritePendingBreak method is called before writing the beginning tag.

This method is used primarily by developers of custom mobile page and control adapters.

Applies to

See also