HtmlWriter.WriteStartTag Method (String)
The WriteStartTag method writes a start tag to the output.
Namespace: Microsoft.Exchange.Data.TextConverters
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Sub WriteStartTag ( _
name As String _
)
'Usage
Dim instance As HtmlWriter
Dim name As String
instance.WriteStartTag(name)
public void WriteStartTag(
string name
)
Parameters
- name
Type: System.String
The start tag to write.
Remarks
The start tag written by WriteStartTag remains open until text or the next tag is written. You can therefore write attributes to them until you write either text or the next tag.