XhtmlTextWriter.WriteBreak Method

Definition

Writes a <br/> element to the XHTML output stream.

public:
 override void WriteBreak();
public override void WriteBreak ();
override this.WriteBreak : unit -> unit
Public Overrides Sub WriteBreak ()

Examples

The following code example demonstrates how to override the inherited HtmlTextWriter.BeginRender method to write a text string with the HtmlTextWriter.Write method and a <br/> element with the WriteBreak method.

// Override the BeginRender method to write a
// message and call the WriteBreak method
// before a control is rendered.
override public void BeginRender()
{
   this.Write("A control is about to render.");
   this.WriteBreak();
}

// Override the EndRender method to
// write a string immediately after 
// a control has rendered. 
override public void EndRender()
{
   this.Write("A control just rendered.");
}
' Override the BeginRender method to write a
' message and call the WriteBreak method
' before a control is rendered.
Overrides Public Sub BeginRender()
   Me.Write("A control is about to render.")
   Me.WriteBreak()
End Sub

' Override the EndRender method to
' write a string immediately after 
' a control has rendered. 
Overrides Public Sub EndRender()
   Me.Write("A control just rendered.")
End Sub

Applies to