TableRow.VerticalAlign Propriedade
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.
Obtém ou define o alinhamento vertical dos conteúdos na linha.
public:
virtual property System::Web::UI::WebControls::VerticalAlign VerticalAlign { System::Web::UI::WebControls::VerticalAlign get(); void set(System::Web::UI::WebControls::VerticalAlign value); };
[System.ComponentModel.Bindable(true)]
public virtual System.Web.UI.WebControls.VerticalAlign VerticalAlign { get; set; }
public virtual System.Web.UI.WebControls.VerticalAlign VerticalAlign { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.VerticalAlign : System.Web.UI.WebControls.VerticalAlign with get, set
member this.VerticalAlign : System.Web.UI.WebControls.VerticalAlign with get, set
Public Overridable Property VerticalAlign As VerticalAlign
Valor da propriedade
Um dos valores de VerticalAlign. O valor padrão é NotSet
.
- Atributos
Exemplos
O exemplo a seguir demonstra como usar a VerticalAlign propriedade . Para obter um exemplo de código de trabalho completo, consulte o tópico visão geral da TableRow classe.
// Create a TableItemStyle object that can be
// set as the default style for all cells
// in the table.
TableItemStyle tableStyle = new TableItemStyle();
tableStyle.HorizontalAlign = HorizontalAlign.Center;
tableStyle.VerticalAlign = VerticalAlign.Middle;
tableStyle.Width = Unit.Pixel(100);
' Create a TableItemStyle object that can be
' set as the default style for all cells
' in the table.
Dim tableStyle As New TableItemStyle()
tableStyle.HorizontalAlign = HorizontalAlign.Center
tableStyle.VerticalAlign = VerticalAlign.Middle
tableStyle.Width = Unit.Pixel(100)
Comentários
Use a VerticalAlign propriedade para especificar o alinhamento vertical do conteúdo da linha. A tabela a seguir lista os valores possíveis.
Alinhamento vertical | Descrição |
---|---|
NotSet | O alinhamento vertical não está definido. |
Top | O conteúdo da linha é alinhado com a parte superior da linha. |
Middle | O conteúdo da linha é alinhado com o meio da linha. |
Bottom | O conteúdo da linha é alinhado com a parte inferior da linha. |