TabControl.DisplayRectangle プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > TabControl.DisplayRectangle プロパティの意味・解説 

TabControl.DisplayRectangle プロパティ

コントロールタブ ページ表示領域取得します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

Public Overrides ReadOnly
 Property DisplayRectangle As Rectangle
Dim instance As TabControl
Dim value As Rectangle

value = instance.DisplayRectangle
public override Rectangle DisplayRectangle { get;
 }
/** @property */
public Rectangle get_DisplayRectangle ()

プロパティ
タブ ページ表示領域を表す Rectangle

使用例使用例

1 つの TabPage がある TabControl を作成するコード例次に示します。この例では、DisplayRectangle プロパティ使用して tabControl1タブ ページ表示領域を表す Rectangle描画ます。この例では、Inflate メソッド使用していることに注意してください。このメソッド使用しない場合は、TabPage 描画コードDrawOnTabPage メソッド描画されRectangle上書きします。

この例では、System.Drawing 名前空間System.Windows.Forms 名前空間使用します

Imports System.Drawing
Imports System.Windows.Forms

Public Class Form1
   Inherits Form
   Private myTabRect As Rectangle
   
   Public Sub New()
      Dim tabControl1 As New
 TabControl()
      Dim tabPage1 As New
 TabPage()
      
      tabControl1.DrawMode = TabDrawMode.OwnerDrawFixed
      tabControl1.Appearance = TabAppearance.Buttons
      tabControl1.Location = New Point(25, 25)
      tabControl1.Controls.Add(tabPage1)
      Controls.Add(tabControl1)
      
      ' Gets a Rectangle that represents the tab page display area of
 tabControl1.
      myTabRect = tabControl1.DisplayRectangle
      
      myTabRect.Inflate(1, 1)
      AddHandler tabControl1.DrawItem, AddressOf
 DrawOnTabPage
   End Sub
   
   Private Sub DrawOnTabPage(sender As
 Object, e As DrawItemEventArgs)
      Dim g As Graphics = e.Graphics
      Dim p As New Pen(Color.Blue)
      g.DrawRectangle(p, myTabRect)
   End Sub
   
   Shared Sub Main()
      Application.Run(New Form1())
   End Sub
End Class
using System.Drawing;
using System.Windows.Forms;

public class Form1 : Form
{
    private Rectangle myTabRect;

    public Form1()
    {
        TabControl tabControl1 = new TabControl();
        TabPage tabPage1 = new TabPage();

        tabControl1.DrawMode = TabDrawMode.OwnerDrawFixed;
        tabControl1.Appearance = TabAppearance.Buttons;
        tabControl1.Location = new Point(25, 25);
        tabControl1.Controls.Add(tabPage1);
        Controls.Add(tabControl1);

        // Gets a Rectangle that represents the tab page display area
 of tabControl1.
        myTabRect = tabControl1.DisplayRectangle;

        myTabRect.Inflate(1, 1); 
        tabControl1.DrawItem += new DrawItemEventHandler(DrawOnTabPage);
    }

    private void DrawOnTabPage(object sender,
 DrawItemEventArgs e)
    {
        Graphics g = e.Graphics;
        Pen p = new Pen(Color.Blue);
        g.DrawRectangle(p, myTabRect);
    }

    static void Main() 
    {
        Application.Run(new Form1());
    }
}
using namespace System::Drawing;
using namespace System::Windows::Forms;
public ref class Form1: public
 Form
{
private:
   Rectangle myTabRect;

public:
   Form1()
   {
      TabControl^ tabControl1 = gcnew TabControl;
      TabPage^ tabPage1 = gcnew TabPage;
      tabControl1->DrawMode = TabDrawMode::OwnerDrawFixed;
      tabControl1->Appearance = TabAppearance::Buttons;
      tabControl1->Location = Point(25,25);
      tabControl1->Controls->Add( tabPage1 );
      Controls->Add( tabControl1 );
      
      // Gets a Rectangle that represents the tab page display area
 of tabControl1.
      myTabRect = tabControl1->DisplayRectangle;
      myTabRect.Inflate( 1, 1 );
      tabControl1->DrawItem += gcnew DrawItemEventHandler( this,
 &Form1::DrawOnTabPage );
   }


private:
   void DrawOnTabPage( Object^ /*sender*/, DrawItemEventArgs^
 e )
   {
      Graphics^ g = e->Graphics;
      Pen^ p = gcnew Pen( Color::Blue );
      g->DrawRectangle( p, myTabRect );
   }

};

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

import System.Drawing.*;
import System.Windows.Forms.*;

public class Form1 extends Form
{
    private Rectangle myTabRect;

    public Form1()
    {
        TabControl tabControl1 = new TabControl();
        TabPage tabPage1 = new TabPage();

        tabControl1.set_DrawMode(TabDrawMode.OwnerDrawFixed);
        tabControl1.set_Appearance(TabAppearance.Buttons);
        tabControl1.set_Location(new Point(25, 25));
        tabControl1.get_Controls().Add(tabPage1);
        get_Controls().Add(tabControl1);

        // Gets a Rectangle that represents the tab page display 
        // area of tabControl1.
        myTabRect = tabControl1.get_DisplayRectangle();
        myTabRect.Inflate(1, 1);
        tabControl1.add_DrawItem(new DrawItemEventHandler(DrawOnTabPage));
    } //Form1

    private void DrawOnTabPage(Object sender,
 DrawItemEventArgs e)
    {
        Graphics g = e.get_Graphics();
        Pen p = new Pen(Color.get_Blue());

        g.DrawRectangle(p, myTabRect);
    } //DrawOnTabPage

    public static void main(String[]
 args)
    {
        Application.Run(new Form1());
    } //main
} //Form1
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からTabControl.DisplayRectangle プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からTabControl.DisplayRectangle プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からTabControl.DisplayRectangle プロパティを検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

TabControl.DisplayRectangle プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



TabControl.DisplayRectangle プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS