ChangePassword.RenderOuterTable Propriedade
Definição
Obtém ou define um valor que indica se o controle circunscreve HTML renderizado em um elemento table para aplicar estilos embutidos.Gets or sets a value that indicates whether the control encloses rendered HTML in a table element in order to apply inline styles.
public:
virtual property bool RenderOuterTable { bool get(); void set(bool value); };
public virtual bool RenderOuterTable { get; set; }
member this.RenderOuterTable : bool with get, set
Public Overridable Property RenderOuterTable As Boolean
Valor da propriedade
true se o controle circunscrever HTML renderizado em um elemento table; caso contrário, false.true if the control encloses rendered HTML in a table element; otherwise, false. O padrão é true.The default is true.
Comentários
Para fazer as propriedades de estilo embutidas, como ForeColor aplicar a todo o HTML que é renderizado para o controle, o ASP.NET inclui o HTML renderizado em um table elemento.In order to make inline style properties such as ForeColor apply to all the HTML that is rendered for the control, ASP.NET encloses the rendered HTML in a table element. Se você não quiser que o table elemento externo seja renderizado, defina essa propriedade como false .If you do not want the outer table element to be rendered, set this property to false. Nesse caso, se você tentar definir propriedades de estilo embutidas que se aplicam ao controle inteiro, uma exceção será lançada.In that case, if you try to set inline style properties that apply to the whole control, an exception is thrown.