TabPage Constructor (String^)

 

Initializes a new instance of the TabPage class and specifies the text for the tab.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
TabPage(
	String^ text
)

Parameters

text
Type: System::String^

The text for the tab.

The Text property is set to the value of the text parameter.

This example creates a TabControl with a TabPage. The TabPage constructor accepts the myTabPage string as Text for tabPage1.

Use the System.Drawing and System.Windows.Forms namespaces for this example.

using namespace System::Drawing;
using namespace System::Windows::Forms;
public ref class Form1: public Form
{
private:
   TabControl^ tabControl1;
   TabPage^ tabPage1;
   void MyTabs()
   {
      this->tabControl1 = gcnew TabControl;
      System::String^ tabPageName = "myTabPage";

      // Constructs a TabPage with a TabPage::Text value.
      this->tabPage1 = gcnew TabPage( tabPageName );
      this->tabControl1->Controls->Add( tabPage1 );
      this->tabControl1->Location = Point(25,25);
      this->tabControl1->Size = System::Drawing::Size( 250, 250 );
      this->ClientSize = System::Drawing::Size( 300, 300 );
      this->Controls->Add( tabControl1 );
   }


public:
   Form1()
   {
      MyTabs();
   }

};

int main()
{
   Application::Run( gcnew Form1 );
}

.NET Framework
Available since 1.1
Return to top
Show: