HtmlTextWriter.EnterStyle Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Grava a marca de abertura de um elemento de marcação que contém atributos que implementam o layout e formatação de caracteres do estilo especificado.
Sobrecargas
EnterStyle(Style) |
Grava a marca de abertura de um elemento |
EnterStyle(Style, HtmlTextWriterTag) |
Grava a marca de abertura de um elemento de marcação que contém atributos que implementam o layout e formatação de caracteres do estilo especificado. |
EnterStyle(Style)
Grava a marca de abertura de um elemento <span>
que contém atributos que implementam o layout e formatação de caracteres do estilo especificado.
public:
virtual void EnterStyle(System::Web::UI::WebControls::Style ^ style);
public virtual void EnterStyle (System.Web.UI.WebControls.Style style);
abstract member EnterStyle : System.Web.UI.WebControls.Style -> unit
override this.EnterStyle : System.Web.UI.WebControls.Style -> unit
Public Overridable Sub EnterStyle (style As Style)
Parâmetros
- style
- Style
Um Style que especifica o layout e formatação para começar a aplicar ao bloco de marcação.
Exemplos
O exemplo de código a seguir demonstra como usar uma classe personalizada chamada TextSample
, derivada da WebControl classe, que usa o EnterStyle método para aplicar um ForeColor estilo a uma cadeia de caracteres de texto.
O EnterStyle método renderiza o HTML <span style="color:Navy;">
. A ExitStyle chamada de método fecha o <span>
elemento depois que o texto é renderizado.
Imports System.Web
Imports System.Web.UI
Imports System.Web.UI.WebControls
Imports System.Security.Permissions
Imports System.Drawing
' Create a custom class, named TextSample, that renders
' its Text property with styles applied by the
' EnterStyle and ExitStyle methods.
Namespace AspNet.Samples
<AspNetHostingPermission(SecurityAction.Demand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
<AspNetHostingPermission(SecurityAction.InheritanceDemand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
Public Class TextSample
Inherits Control
' Create an instance of the Style class.
Private textStyle As Style = New Style()
Private textMessage As String
' Create a Text property.
Public Property Text() As String
Get
Return textMessage
End Get
Set(ByVal value As String)
textMessage = value
End Set
End Property
Protected Overrides Sub Render(ByVal writer As HtmlTextWriter)
' Set the value of the Text property.
textMessage = "Hello, World!"
' Set the Style object's ForeColor
' property to Navy.
textStyle.ForeColor = Color.Navy
' Render the Text property with the style.
writer.WriteLine("The text property styled: ")
writer.EnterStyle(textStyle)
writer.Write(Text)
writer.ExitStyle(textStyle)
' Use the WriteBreak method twice to render
' an empty line between the lines of rendered text.
writer.WriteBreak()
writer.WriteBreak()
' Render the Text property without the style.
writer.WriteLine("The Text property unstyled: ")
writer.Write(Text)
End Sub
End Class
End Namespace
Comentários
Use o EnterStyle método para aplicar estilos, como cor da tela de fundo ou largura da borda, a um bloco de marcação.
Os EnterStyle métodos e ExitStyle os métodos permitem que um adaptador de dispositivo ou controle crie marcação que usa a formatação de caracteres do estilo especificado. Use o mesmo valor no style
EnterStyle método usado no método correspondente ExitStyle .
A EnterStyle sobrecarga do EnterStyle(Style) método renderiza a marca de abertura de um <span>
elemento. Em seguida, esse método adiciona os atributos e atributos de estilo necessários à marca de abertura do <span>
elemento para exibir as configurações especificadas pelo Style objeto. Se você quiser renderizar um elemento de marcação diferente para conter os atributos e atributos de estilo, use a EnterStyle(Style, HtmlTextWriterTag) sobrecarga.
Confira também
Aplica-se a
EnterStyle(Style, HtmlTextWriterTag)
Grava a marca de abertura de um elemento de marcação que contém atributos que implementam o layout e formatação de caracteres do estilo especificado.
public:
virtual void EnterStyle(System::Web::UI::WebControls::Style ^ style, System::Web::UI::HtmlTextWriterTag tag);
public virtual void EnterStyle (System.Web.UI.WebControls.Style style, System.Web.UI.HtmlTextWriterTag tag);
abstract member EnterStyle : System.Web.UI.WebControls.Style * System.Web.UI.HtmlTextWriterTag -> unit
override this.EnterStyle : System.Web.UI.WebControls.Style * System.Web.UI.HtmlTextWriterTag -> unit
Public Overridable Sub EnterStyle (style As Style, tag As HtmlTextWriterTag)
Parâmetros
- style
- Style
Um Style que especifica o layout e formatação para começar a aplicar ao bloco de marcação.
Um HtmlTextWriterTag que especifica a marca de abertura do elemento de marcação que contém o objeto de estilo especificado em style
.
Exemplos
O exemplo de código a seguir demonstra como usar uma classe personalizada chamada TextSample
, derivada da WebControl classe, que usa o EnterStyle método para aplicar um ForeColor estilo a uma cadeia de caracteres de texto.
O EnterStyle método renderiza o HTML <span style="color:Navy;">
. A ExitStyle chamada de método fecha o <span>
elemento depois que o texto é renderizado.
Imports System.Web
Imports System.Web.UI
Imports System.Web.UI.WebControls
Imports System.Security.Permissions
Imports System.Drawing
' Create a custom class, named TextSample, that renders
' its Text property with styles applied by the
' EnterStyle and ExitStyle methods.
Namespace AspNet.Samples
<AspNetHostingPermission(SecurityAction.Demand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
<AspNetHostingPermission(SecurityAction.InheritanceDemand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
Public Class TextSample
Inherits Control
' Create an instance of the Style class.
Private textStyle As Style = New Style()
Private textMessage As String
' Create a Text property.
Public Property Text() As String
Get
Return textMessage
End Get
Set(ByVal value As String)
textMessage = value
End Set
End Property
Protected Overrides Sub Render(ByVal writer As HtmlTextWriter)
' Set the value of the Text property.
textMessage = "Hello, World!"
' Set the Style object's ForeColor
' property to Navy.
textStyle.ForeColor = Color.Navy
' Render the Text property with the style.
writer.WriteLine("The text property styled: ")
writer.EnterStyle(textStyle)
writer.Write(Text)
writer.ExitStyle(textStyle)
' Use the WriteBreak method twice to render
' an empty line between the lines of rendered text.
writer.WriteBreak()
writer.WriteBreak()
' Render the Text property without the style.
writer.WriteLine("The Text property unstyled: ")
writer.Write(Text)
End Sub
End Class
End Namespace
Comentários
Use o EnterStyle método para aplicar estilos, como cor da tela de fundo ou largura da borda, a um bloco de marcação.
Os EnterStyle métodos e ExitStyle os métodos permitem que um adaptador de dispositivo ou controle crie marcação que usa a formatação de caracteres do estilo especificado. Use o mesmo valor no style
EnterStyle método usado no método correspondente ExitStyle .
A EnterStyle sobrecarga do EnterStyle(Style, HtmlTextWriterTag) método renderiza a marca de abertura do elemento especificado pelo tag
parâmetro. Em EnterStyle(Style, HtmlTextWriterTag) seguida, o método adiciona os atributos e atributos de estilo necessários à marca de abertura do elemento para exibir as configurações especificadas pelo Style objeto. Use a EnterStyle(Style) sobrecarga para renderizar a marca de abertura de um <span>
elemento.