TabAlignment Enumeração
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.
Especifica os locais das guias em um controle guia.
public enum class TabAlignment
public enum TabAlignment
type TabAlignment =
Public Enum TabAlignment
- Herança
Campos
Bottom | 1 | As guias estão localizadas na parte inferior do controle. |
Left | 2 | As guias estão localizadas na borda esquerda do controle. |
Right | 3 | As guias estão localizadas na borda direita do controle. |
Top | 0 | As guias estão localizadas na parte superior do controle. |
Exemplos
O exemplo de código a seguir demonstra como usar as TabControl.Alignment propriedades e TabControl.Appearance as enumerações e TabAppearance as TabAlignment propriedades. Para executar o exemplo, cole o código a seguir em um formulário que contém um TabControl TabControl1 chamado. Chame o método ChangeTheLookOfTheTabControl no construtor do formulário ou no método Load.
private:
void ChangeTheLookOfTheTabControl()
{
// Set the size and location of the TabControl.
this->TabControl1->Location = System::Drawing::Point( 20, 20 );
TabControl1->Size = System::Drawing::Size( 250, 250 );
// Align the tabs along the bottom of the control.
TabControl1->Alignment = TabAlignment::Bottom;
// Change the tabs to flat buttons.
TabControl1->Appearance = TabAppearance::FlatButtons;
}
private void ChangeTheLookOfTheTabControl()
{
// Set the size and location of the TabControl.
this.TabControl1.Location = new System.Drawing.Point(20, 20);
TabControl1.Size = new System.Drawing.Size(250, 250);
// Align the tabs along the bottom of the control.
TabControl1.Alignment = TabAlignment.Bottom;
// Change the tabs to flat buttons.
TabControl1.Appearance = TabAppearance.FlatButtons;
}
Private Sub ChangeTheLookOfTheTabControl()
' Set the size and location of the TabControl.
Me.TabControl1.Location = New System.Drawing.Point(20, 20)
TabControl1.Size = New System.Drawing.Size(250, 250)
' Align the tabs along the bottom of the control.
TabControl1.Alignment = TabAlignment.Bottom
' Change the tabs to flat buttons.
TabControl1.Appearance = TabAppearance.FlatButtons
End Sub
Comentários
Essa enumeração é usada por membros como TabControl.Alignment.