Html32TextWriter.RenderBeforeContent Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menulis spasi tab atau informasi font apa pun yang muncul sebelum konten yang terkandung dalam elemen HTML.
protected:
override System::String ^ RenderBeforeContent();
protected override string RenderBeforeContent();
override this.RenderBeforeContent : unit -> string
Protected Overrides Function RenderBeforeContent () As String
Mengembalikan
Informasi font atau penspasian untuk ditulis sebelum merender konten elemen HTML; jika tidak, jika tidak ada informasi seperti itu untuk dirender, null.
Contoh
Contoh kode berikut menunjukkan cara mengambil alih RenderBeforeContent metode . Kode memeriksa apakah th elemen sedang dirender, lalu menggunakan SupportsBold metode untuk memeriksa apakah perangkat yang meminta dapat menampilkan pemformatan tebal. Jika perangkat mendukung pemformatan tebal, RenderBeforeContent metode menulis tag pembuka elemen b . Jika perangkat tidak mendukung pemformatan tebal, RenderBeforeContent metode menulis tag pembuka elemen font dengan atribut yang color diatur ke nilai heksadesimal untuk merah.
Selanjutnya, setiap metode memeriksa apakah h4 elemen sedang dirender, lalu menggunakan SupportsItalic properti untuk memeriksa apakah perangkat yang meminta dapat menampilkan pemformatan miring. Jika perangkat mendukung pemformatan miring, RenderBeforeContent metode menulis tag pembuka elemen i . Jika perangkat tidak mendukung pemformatan miring, RenderBeforeContent metode menulis tag pembuka elemen font dengan atribut yang color diatur ke nilai heksadesimal untuk biru navigasi.
Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk Html32TextWriter kelas .
// Override the RenderBeforeContent method to render
// styles before rendering the content of a <th> element.
protected override string RenderBeforeContent()
{
// Check the TagKey property. If its value is
// HtmlTextWriterTag.TH, check the value of the
// SupportsBold property. If true, return the
// opening tag of a <b> element; otherwise, render
// the opening tag of a <font> element with a color
// attribute set to the hexadecimal value for red.
if (TagKey == HtmlTextWriterTag.Th)
{
if (SupportsBold)
return "<b>";
else
return "<font color=\"FF0000\">";
}
// Check whether the element being rendered
// is an <H4> element. If it is, check the
// value of the SupportsItalic property.
// If true, render the opening tag of the <i> element
// prior to the <H4> element's content; otherwise,
// render the opening tag of a <font> element
// with a color attribute set to the hexadecimal
// value for navy blue.
if (TagKey == HtmlTextWriterTag.H4)
{
if (SupportsItalic)
return "<i>";
else
return "<font color=\"000080\">";
}
// Call the base method.
return base.RenderBeforeContent();
}
' Override the RenderBeforeContent method to render
' styles before rendering the content of a <th> element.
Protected Overrides Function RenderBeforeContent() As String
' Check the TagKey property. If its value is
' HtmlTextWriterTag.TH, check the value of the
' SupportsBold property. If true, return the
' opening tag of a <b> element; otherwise, render
' the opening tag of a <font> element with a color
' attribute set to the hexadecimal value for red.
If TagKey = HtmlTextWriterTag.Th Then
If (SupportsBold) Then
Return "<b>"
Else
Return "<font color=""FF0000"">"
End If
End If
' Check whether the element being rendered
' is an <H4> element. If it is, check the
' value of the SupportsItalic property.
' If true, render the opening tag of the <i> element
' prior to the <H4> element's content; otherwise,
' render the opening tag of a <font> element
' with a color attribute set to the hexadecimal
' value for navy blue.
If TagKey = HtmlTextWriterTag.H4 Then
If (SupportsItalic) Then
Return "<i>"
Else
Return "<font color=""000080"">"
End If
End If
' Call the base method.
Return MyBase.RenderBeforeContent()
End Function