다음을 통해 공유


TabAlignment 열거형

tab 컨트롤의 탭 위치를 지정합니다.

네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)

구문

‘선언
Public Enumeration TabAlignment
‘사용 방법
Dim instance As TabAlignment
public enum TabAlignment
public enum class TabAlignment
public enum TabAlignment
public enum TabAlignment

멤버

  멤버 이름 설명
Bottom 탭이 컨트롤 맨 아래에 위치합니다. 
Left 탭이 컨트롤의 왼쪽 가장자리에 위치합니다. 
Right 탭이 컨트롤의 오른쪽 가장자리에 위치합니다. 
Top 탭이 컨트롤 맨 위에 위치합니다. 

설명

이 열거형은 TabControl.Alignment 등과 같은 멤버에서 사용됩니다.

예제

다음 예제 코드에서는 TabControl.AlignmentTabControl.Appearance 속성과 TabAlignmentTabAppearance 열거형을 사용하는 방법을 보여 줍니다. 이 예제를 실행하려면 TabControl1이라는 이름의 TabControl이 있는 폼에 다음 코드를 붙여넣고 폼의 생성자나 Load 메서드에서 ChangeTheLookOfTheTabControl 메서드를 호출합니다.

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
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:
   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.set_Location(new System.Drawing.Point(20, 20));
    tabControl1.set_Size(new System.Drawing.Size(250, 250));
    // Align the tabs along the bottom of the control.
    tabControl1.set_Alignment(TabAlignment.Bottom);
    // Change the tabs to flat buttons.
    tabControl1.set_Appearance(TabAppearance.FlatButtons);
} //ChangeTheLookOfTheTabControl

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

참고 항목

참조

System.Windows.Forms 네임스페이스
TabControl