TabAlignment Enumeración
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Especifica las ubicaciones de las fichas de un control de fichas.
public enum class TabAlignment
public enum TabAlignment
type TabAlignment =
Public Enum TabAlignment
- Herencia
Campos
Bottom | 1 | Las fichas se ubican a lo largo de la parte inferior del control. |
Left | 2 | Las fichas se ubican a lo largo del borde izquierdo del control. |
Right | 3 | Las fichas se ubican a lo largo del borde derecho del control. |
Top | 0 | Las fichas se ubican a lo largo de la parte superior del control. |
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar las TabControl.Alignment propiedades y TabControl.Appearance y las TabAlignment enumeraciones y TabAppearance . Para ejecutar el ejemplo, pegue el código siguiente en un formulario que contiene un TabControl elemento denominado TabControl1. Llame al método ChangeTheLookOfTheTabControl en el constructor del formulario o en el 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
Comentarios
Esta enumeración la usan los miembros como TabControl.Alignment.